mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-27 06:33:21 -05:00
[transcode] Use proper const for avfilter_get_by_name() result
This commit is contained in:
parent
565f0b07bd
commit
3325b2d9ce
@ -923,10 +923,10 @@ close_output(struct encode_ctx *ctx)
|
||||
static int
|
||||
open_filter(struct stream_ctx *out_stream, struct stream_ctx *in_stream)
|
||||
{
|
||||
AVFilter *buffersrc;
|
||||
AVFilter *format;
|
||||
AVFilter *scale;
|
||||
AVFilter *buffersink;
|
||||
const AVFilter *buffersrc;
|
||||
const AVFilter *format;
|
||||
const AVFilter *scale;
|
||||
const AVFilter *buffersink;
|
||||
AVFilterContext *buffersrc_ctx;
|
||||
AVFilterContext *format_ctx;
|
||||
AVFilterContext *scale_ctx;
|
||||
|
Loading…
x
Reference in New Issue
Block a user