From 1ecdf8912b9ced51b3267cdcdce5e394d0a3bf8e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 25 Feb 2013 23:54:28 +0100 Subject: avformat: av_log_ask_for_sample() ---> avpriv_request_sample() --- libavformat/au.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/au.c') diff --git a/libavformat/au.c b/libavformat/au.c index 4645eb527c..76da6e6092 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -85,13 +85,13 @@ static int au_read_header(AVFormatContext *s) codec = ff_codec_get_id(codec_au_tags, id); if (codec == AV_CODEC_ID_NONE) { - av_log_ask_for_sample(s, "unknown or unsupported codec tag: %u\n", id); + avpriv_request_sample(s, "unknown or unsupported codec tag: %u", id); return AVERROR_PATCHWELCOME; } bps = av_get_bits_per_sample(codec); if (!bps) { - av_log_ask_for_sample(s, "could not determine bits per sample\n"); + avpriv_request_sample(s, "Unknown bits per sample"); return AVERROR_PATCHWELCOME; } -- cgit v1.2.3