Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2013-07-06 11:34:13 +0400
committerJames Almer <jamrial@gmail.com>2013-07-08 04:41:37 +0400
commitdc73774792265e24fc1aad1b9d36f7c6669b8d66 (patch)
tree7736126b2b56107838177b79dc2c949c0ceab9ac /libavformat
parentce11d9490cc2e89b62734cc6c5b58a9f90fdd27f (diff)
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
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/oggparseskeleton.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/oggparseskeleton.c b/libavformat/oggparseskeleton.c
index 719e06583d..b0121059a0 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) {