mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-27 01:33:20 +00:00
ffmpeg_opt: do not warn about unused gop_timecode
The option is injected by generic code and being sometimes unused is normal. Fixes Ticket2762 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e914a21ada
commit
d0a7933991
@ -1855,6 +1855,10 @@ loop_end:
|
||||
exit_program(1);
|
||||
}
|
||||
|
||||
// gop_timecode is injected by generic code but not always used
|
||||
if (!strcmp(e->key, "gop_timecode"))
|
||||
continue;
|
||||
|
||||
av_log(NULL, AV_LOG_WARNING, "Codec AVOption %s (%s) specified for "
|
||||
"output file #%d (%s) has not been used for any stream. The most "
|
||||
"likely reason is either wrong type (e.g. a video option with "
|
||||
|
Loading…
Reference in New Issue
Block a user