[FFmpeg-cvslog] oggparseskeleton: Replace avpriv_report_missing_feature() with a normal av_log() call
James Almer
git at videolan.org
Mon Jul 15 03:11:10 CEST 2013
ffmpeg | branch: release/1.1 | James Almer <jamrial at gmail.com> | Sat Jul 6 04:34:13 2013 -0300| [86a816902f36f01b3ea83b08cfe681add0a43995] | committer: James Almer
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 at gmx.at>
(cherry picked from commit 63d7684fefcfa9de1a04b43471f876e882ba7aac)
Conflicts:
libavformat/oggparseskeleton.c
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=86a816902f36f01b3ea83b08cfe681add0a43995
---
libavformat/oggparseskeleton.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/libavformat/oggparseskeleton.c b/libavformat/oggparseskeleton.c
index df4dc84..415a423 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) {
More information about the ffmpeg-cvslog
mailing list