Commit 8fdec02f authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '0420c810'

* commit '0420c810':
  log: pass the correct parameters to missing_feature_sample

Conflicts:
	libavutil/log.c

See: 572e38a5Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents d880b2bd 0420c810
......@@ -282,7 +282,8 @@ void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
av_log_callback = callback;
}
static void missing_feature_sample(int sample, void *avc, const char *msg, va_list argument_list)
static void missing_feature_sample(int sample, void *avc, const char *msg,
va_list argument_list)
{
av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
av_log(avc, AV_LOG_WARNING, " is not implemented. Update your FFmpeg "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment