Commit 1f4be30b authored by stefano's avatar stefano

Add 'const' attribute to the last_asked_format variable, fix a

compiler warning.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20740 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 620e76f9
...@@ -91,7 +91,7 @@ static const OptionDef options[]; ...@@ -91,7 +91,7 @@ static const OptionDef options[];
#define MAX_FILES 20 #define MAX_FILES 20
static char *last_asked_format = NULL; static const char *last_asked_format = NULL;
static AVFormatContext *input_files[MAX_FILES]; static AVFormatContext *input_files[MAX_FILES];
static int64_t input_files_ts_offset[MAX_FILES]; static int64_t input_files_ts_offset[MAX_FILES];
static double input_files_ts_scale[MAX_FILES][MAX_STREAMS]; static double input_files_ts_scale[MAX_FILES][MAX_STREAMS];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment