You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Change 'arg' type in parse_meta_type, fix warning:
ffmpeg.c: In function ‘parse_meta_type’: ffmpeg.c:3323:13: warning: assignment discards qualifiers from pointer target type Originally committed as revision 26312 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
2
ffmpeg.c
2
ffmpeg.c
@@ -2984,7 +2984,7 @@ static void opt_map(const char *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void parse_meta_type(const char *arg, char *type, int *index, char **endptr)
|
static void parse_meta_type(char *arg, char *type, int *index, char **endptr)
|
||||||
{
|
{
|
||||||
*endptr = arg;
|
*endptr = arg;
|
||||||
if (*arg == ',') {
|
if (*arg == ',') {
|
||||||
|
Reference in New Issue
Block a user