From 95ae72b7e063cb02aa17c7f0c7d759844a37e526 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 26 Aug 2005 19:05:44 +0000 Subject: Compilation fixes part 1 patch by (Arvind R. and Burkhard Plaum, plaum, ipf uni-stuttgart de) Originally committed as revision 4540 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ac3dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/ac3dec.c') diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index fcfb3147a1..db7189ec7a 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -121,7 +121,7 @@ static int ac3_decode_frame(AVCodecContext *avctx, /* No specific number of channel requested */ avctx->channels = s->channels; else if (s->channels < avctx->channels) { - fprintf(stderr, "ac3dec: AC3 Source channels are less than specified: output to %d channels.. (frmsize: %d)\n", s->channels, len); + av_log( avctx, AV_LOG_INFO, "ac3dec: AC3 Source channels are less than specified: output to %d channels.. (frmsize: %d)\n", s->channels, len); avctx->channels = s->channels; } avctx->bit_rate = bit_rate; -- cgit v1.2.3