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:
authorDiego Biurrun <diego@biurrun.de>2012-10-08 21:08:03 +0400
committerDiego Biurrun <diego@biurrun.de>2012-10-09 13:39:26 +0400
commitf75f4194d1ea4e5a0176b13452345eff87164416 (patch)
treeb8f943c9b7128ec61a19b3f378c3670ed9cb3a67 /libavcodec/utils.c
parentc136a813d77ed0c8698386d140990e9003d5d38c (diff)
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 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index c71ddbe802..bd80d7bf13 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -2028,7 +2028,7 @@ int ff_match_2uint16(const uint16_t(*tab)[2], int size, int a, int b)
void av_log_missing_feature(void *avc, const char *feature, int want_sample)
{
- av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your Libav "
+ av_log(avc, AV_LOG_WARNING, "%s is not implemented. Update your Libav "
"version to the newest one from Git. If the problem still "
"occurs, it means that your file has a feature which has not "
"been implemented.\n", feature);