diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-08 19:08:03 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-09 11:39:26 +0200 |
commit | f75f4194d1ea4e5a0176b13452345eff87164416 (patch) | |
tree | b8f943c9b7128ec61a19b3f378c3670ed9cb3a67 /libavformat | |
parent | c136a813d77ed0c8698386d140990e9003d5d38c (diff) | |
download | ffmpeg-f75f4194d1ea4e5a0176b13452345eff87164416.tar.gz |
Restructure av_log_missing_feature message
Some invocations include a verb in the log message, others do not. Yet
av_log_missing_feature expects callers to provide a verb. Change the
function to include a verb instead and update the callers accordingly.
The result is a more natural function API and correct English in the
function invocations.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/oggparseskeleton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/oggparseskeleton.c b/libavformat/oggparseskeleton.c index 92841b8138..2cc63d413b 100644 --- a/libavformat/oggparseskeleton.c +++ b/libavformat/oggparseskeleton.c @@ -75,8 +75,8 @@ static int skeleton_header(AVFormatContext *s, int idx) target_idx = ogg_find_stream(ogg, AV_RL32(buf+12)); start_granule = AV_RL64(buf+36); if (os->start_granule != OGG_NOGRANULE_VALUE) { - av_log_missing_feature(s, "multiple fisbone for the " - "same stream\n", 0); + av_log_missing_feature(s, + "multiple fisbone for the same stream", 0); return 1; } if (target_idx >= 0 && start_granule != OGG_NOGRANULE_VALUE) { |