diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-11-14 11:18:26 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-11-17 10:52:58 +0100 |
commit | 52380a055b358b8611d88fc02b3a477cac2e4f0c (patch) | |
tree | 57a719d95560b5dbbd36df7b9a8cc28ebe8b9a02 /fftools/ffmpeg.h | |
parent | 0fb7d111e891b7256a44227e193686c41ae6a986 (diff) | |
download | ffmpeg-52380a055b358b8611d88fc02b3a477cac2e4f0c.tar.gz |
fftools/ffmpeg_mux_init: move validating codec avoptions to a separate function
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index ad53ad4ce8..b9262b373f 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -694,7 +694,7 @@ void assert_avoptions(AVDictionary *m); void assert_file_overwrite(const char *filename); char *file_read(const char *filename); -AVDictionary *strip_specifiers(AVDictionary *dict); +AVDictionary *strip_specifiers(const AVDictionary *dict); const AVCodec *find_codec_or_die(const char *name, enum AVMediaType type, int encoder); int parse_and_set_vsync(const char *arg, int *vsync_var, int file_idx, int st_idx, int is_global); |