diff options
author | James Almer <jamrial@gmail.com> | 2013-07-06 04:34:13 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2013-07-07 21:40:01 -0300 |
commit | 86a816902f36f01b3ea83b08cfe681add0a43995 (patch) | |
tree | ef32eb049ffc413ee85c95946e8a07fc12e36d1f | |
parent | 8695d814e1ad90389fab9a760827b449d24c188c (diff) | |
download | ffmpeg-86a816902f36f01b3ea83b08cfe681add0a43995.tar.gz |
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>
(cherry picked from commit 63d7684fefcfa9de1a04b43471f876e882ba7aac)
Conflicts:
libavformat/oggparseskeleton.c
-rw-r--r-- | libavformat/oggparseskeleton.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/oggparseskeleton.c b/libavformat/oggparseskeleton.c index df4dc843c9..415a4235dc 100644 --- a/libavformat/oggparseskeleton.c +++ b/libavformat/oggparseskeleton.c @@ -80,8 +80,7 @@ static int skeleton_header(AVFormatContext *s, int idx) } os = ogg->streams + target_idx; if (os->start_granule != OGG_NOGRANULE_VALUE) { - av_log_missing_feature(s, - "Multiple fisbone for the same stream", 0); + av_log(s, AV_LOG_WARNING, "Multiple fisbone for the same stream\n"); return 1; } if (start_granule != OGG_NOGRANULE_VALUE) { |