diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-13 11:28:10 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-14 11:35:30 +0200 |
commit | 2d3acbfe8c4f54f44edb66298954a0233d819a16 (patch) | |
tree | ae0cc98f036042886e5dd2679f71c0fa9991eda0 /libavcodec/utils.c | |
parent | 9bb936a80e72ae3439ded56f08f3d558700537c2 (diff) | |
download | ffmpeg-2d3acbfe8c4f54f44edb66298954a0233d819a16.tar.gz |
lavc: add const to AVCodecContext.codec_descriptor.
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 03caf1c026..7608551036 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -712,7 +712,7 @@ MAKE_ACCESSORS(AVFrame, frame, AVDictionary *, metadata) MAKE_ACCESSORS(AVFrame, frame, int, decode_error_flags) MAKE_ACCESSORS(AVCodecContext, codec, AVRational, pkt_timebase) -MAKE_ACCESSORS(AVCodecContext, codec, AVCodecDescriptor*, codec_descriptor) +MAKE_ACCESSORS(AVCodecContext, codec, const AVCodecDescriptor *, codec_descriptor) static void avcodec_get_subtitle_defaults(AVSubtitle *sub) { |