diff options
author | Luca Abeni <lucabe72@email.it> | 2008-02-15 12:04:35 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2008-02-15 12:04:35 +0000 |
commit | 6881b8e5671248e41582faac149bdf6abd0501e2 (patch) | |
tree | a009b533fca618ad9db44f0307fab85a86f4ec36 /libavcodec/avcodec.h | |
parent | 408ed51cdb6c3e7e9d1ef0141b3c4e1c49121489 (diff) | |
download | ffmpeg-6881b8e5671248e41582faac149bdf6abd0501e2.tar.gz |
Fix
utils.c: In function ‘avcodec_get_context_defaults2’:
utils.c:793: warning: assignment discards qualifiers from pointer target type
Originally committed as revision 11938 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index feac22d5b0..524be49270 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1197,7 +1197,7 @@ typedef struct AVCodecContext { * - encoding: Set by user * - decoding: unused */ - char *rc_eq; + const char *rc_eq; /** * maximum bitrate |