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/truespeech.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/truespeech.c') diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c index 859983c574..ff39343d0e 100644 --- a/libavcodec/truespeech.c +++ b/libavcodec/truespeech.c @@ -63,7 +63,7 @@ static av_cold int truespeech_decode_init(AVCodecContext * avctx) TSContext *c = avctx->priv_data; if (avctx->channels != 1) { - av_log_ask_for_sample(avctx, "Unsupported channel count: %d\n", avctx->channels); + avpriv_request_sample(avctx, "Channel count %d", avctx->channels); return AVERROR_PATCHWELCOME; } -- cgit v1.2.3