Browse Source

Simplify av_log_missing_feature().

Do not print the results of the conditional call to av_log_ask_for_sample()
into the same line as the main output, separate the already long text.
tags/n0.8
Diego Biurrun 14 years ago
parent
commit
3fd3632ffe
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavcodec/utils.c

+ 1
- 3
libavcodec/utils.c View File

@@ -1154,11 +1154,9 @@ 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 "
"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.", feature);
"been implemented.\n", feature);
if(want_sample)
av_log_ask_for_sample(avc, NULL);
else
av_log(avc, AV_LOG_WARNING, "\n");
}

void av_log_ask_for_sample(void *avc, const char *msg, ...)


Loading…
Cancel
Save