summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-04 00:37:36 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-04 00:37:36 +0000
commitf73008d820dd424b71f4df0d97aa915cbb78019b (patch)
treea8831b8927020809177924ff84b41688b243680b /ffmpeg.c
parent0fca8bc835b8fa1d804cdc60bca15a445c40d07f (diff)
const
Originally committed as revision 11844 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 3b2201fe38..4594c806c8 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2612,7 +2612,7 @@ static void opt_input_ts_offset(const char *arg)
static enum CodecID find_codec_or_die(const char *name, int type, int encoder)
{
- char *codec_string = encoder ? "encoder" : "decoder";
+ const char *codec_string = encoder ? "encoder" : "decoder";
AVCodec *codec;
if(!name)