mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
oggparseskeleton: Replace avpriv_report_missing_feature() with a normal av_log() call
since there should not be more than one fisbone for a given stream. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3960992f0a
commit
63d7684fef
@ -80,8 +80,7 @@ static int skeleton_header(AVFormatContext *s, int idx)
|
||||
}
|
||||
os = ogg->streams + target_idx;
|
||||
if (os->start_granule != OGG_NOGRANULE_VALUE) {
|
||||
avpriv_report_missing_feature(s,
|
||||
"Multiple fisbone for the same stream");
|
||||
av_log(s, AV_LOG_WARNING, "Multiple fisbone for the same stream\n");
|
||||
return 1;
|
||||
}
|
||||
if (start_granule != OGG_NOGRANULE_VALUE) {
|
||||
|
Loading…
Reference in New Issue
Block a user