diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-12-05 15:14:01 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-12-05 15:14:01 +0000 |
commit | ef6fc64762a34a48aad9c070ffdf00b55dd6880e (patch) | |
tree | 3852c37d4d7ae9b4a2d776d8c41866c345f2813a /ffmpeg.c | |
parent | b1159ad92818cd8f0885d252b0800f5960fe7241 (diff) | |
download | ffmpeg-ef6fc64762a34a48aad9c070ffdf00b55dd6880e.tar.gz |
Add 'const' attribute to the last_asked_format variable, fix a
compiler warning.
Originally committed as revision 20740 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ static const OptionDef options[]; #define MAX_FILES 20 -static char *last_asked_format = NULL; +static const char *last_asked_format = NULL; static AVFormatContext *input_files[MAX_FILES]; static int64_t input_files_ts_offset[MAX_FILES]; static double input_files_ts_scale[MAX_FILES][MAX_STREAMS]; |