diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-07-26 02:50:59 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-26 14:51:16 -0700 |
commit | 7215fcf84032118ecd9fb54fb14154d69fea638d (patch) | |
tree | 99c4c410f7695b56b94e216cb51980d8f0b0e5b1 /libavformat | |
parent | ec4f04da1a3462dac429b9d15dee5f027309da15 (diff) | |
download | ffmpeg-7215fcf84032118ecd9fb54fb14154d69fea638d.tar.gz |
avformat: Mark AVOutputFormat argument in avformat_query_codec as const
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avformat.h | 3 | ||||
-rw-r--r-- | libavformat/utils.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 3520506038..db41836c3b 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1911,7 +1911,8 @@ int av_match_ext(const char *filename, const char *extensions); * @return 1 if codec with ID codec_id can be stored in ofmt, 0 if it cannot. * A negative number if this information is not available. */ -int avformat_query_codec(AVOutputFormat *ofmt, enum AVCodecID codec_id, int std_compliance); +int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id, + int std_compliance); /** * @defgroup riff_fourcc RIFF FourCCs diff --git a/libavformat/utils.c b/libavformat/utils.c index 7a054afd3b..d34b35f454 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3049,7 +3049,7 @@ int64_t ff_iso8601_to_unix_time(const char *datestr) #endif } -int avformat_query_codec(AVOutputFormat *ofmt, enum AVCodecID codec_id, +int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id, int std_compliance) { if (ofmt) { |