diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-29 04:56:18 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-29 04:56:18 +0100 |
commit | 55bd20a841d2b98206dbeaebc4c24a5eed44f45c (patch) | |
tree | d86afb1856718be4b7860c2d838986a286058501 /libavcodec | |
parent | 5b3c68414749e87ef46a7ce19ce75be8c6f3d515 (diff) | |
download | ffmpeg-streaming-55bd20a841d2b98206dbeaebc4c24a5eed44f45c.zip ffmpeg-streaming-55bd20a841d2b98206dbeaebc4c24a5eed44f45c.tar.gz |
avcodec/dcadec: AVClass is const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dcadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c index 8af11a3..483cf06 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -347,7 +347,7 @@ static av_always_inline int get_bitalloc(GetBitContext *gb, BitAlloc *ba, } typedef struct { - AVClass *class; ///< class for AVOptions + const AVClass *class; ///< class for AVOptions AVCodecContext *avctx; /* Frame header */ int frame_type; ///< type of the current frame |