From 6d97484d72e33f7dde9493a9ead1a72e2f029605 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 13 Mar 2013 21:17:05 +0100 Subject: avcodec: av_log_ask_for_sample() ---> avpriv_request_sample() --- libavcodec/wnv1.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libavcodec/wnv1.c') diff --git a/libavcodec/wnv1.c b/libavcodec/wnv1.c index 2f9fc413b0..418c5f76ab 100644 --- a/libavcodec/wnv1.c +++ b/libavcodec/wnv1.c @@ -92,12 +92,14 @@ static int decode_frame(AVCodecContext *avctx, else { l->shift = 8 - (buf[2] >> 4); if (l->shift > 4) { - av_log_ask_for_sample(avctx, "Unknown WNV1 frame header value %i\n", + avpriv_request_sample(avctx, + "Unknown WNV1 frame header value %i", buf[2] >> 4); l->shift = 4; } if (l->shift < 1) { - av_log_ask_for_sample(avctx, "Unknown WNV1 frame header value %i\n", + avpriv_request_sample(avctx, + "Unknown WNV1 frame header value %i", buf[2] >> 4); l->shift = 1; } -- cgit v1.2.3