mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-13 19:01:03 +00:00
lavd/lavfi: Constify two variables.
Fixes the following warnings: libavdevice/lavfi.c:136:16: warning: assignment discards 'const' qualifier from pointer target type libavdevice/lavfi.c:137:17: warning: assignment discards 'const' qualifier from pointer target type
This commit is contained in:
parent
69b5ce64d2
commit
535117d1f6
@ -121,7 +121,7 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
|
||||
{
|
||||
LavfiContext *lavfi = avctx->priv_data;
|
||||
AVFilterInOut *input_links = NULL, *output_links = NULL, *inout;
|
||||
AVFilter *buffersink, *abuffersink;
|
||||
const AVFilter *buffersink, *abuffersink;
|
||||
int *pix_fmts = create_all_formats(AV_PIX_FMT_NB);
|
||||
enum AVMediaType type;
|
||||
int ret = 0, i, n;
|
||||
|
Loading…
Reference in New Issue
Block a user