diff options
author | Alex Converse <alex.converse@gmail.com> | 2012-02-20 00:42:33 -0800 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-02-21 09:47:07 -0800 |
commit | b0f29db5c2b8d1b7de2ccac815e33090e8c49cff (patch) | |
tree | 0d70e97046f81fcd84e8c11eec7947037e45f760 /libavcodec/libxvid_rc.c | |
parent | e48a70e6da02cd5426b6340af70410bdfe27dfa7 (diff) | |
download | ffmpeg-b0f29db5c2b8d1b7de2ccac815e33090e8c49cff.tar.gz |
Mark mutable static data const where appropriate.
Diffstat (limited to 'libavcodec/libxvid_rc.c')
-rw-r--r-- | libavcodec/libxvid_rc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libxvid_rc.c b/libavcodec/libxvid_rc.c index 2386ce3cc6..7a0e60dd09 100644 --- a/libavcodec/libxvid_rc.c +++ b/libavcodec/libxvid_rc.c @@ -47,7 +47,7 @@ int ff_xvid_rate_control_init(MpegEncContext *s){ } for(i=0; i<s->rc_context.num_entries; i++){ - static const char *frame_types = " ipbs"; + static const char frame_types[] = " ipbs"; char tmp[256]; RateControlEntry *rce; |