From 2aa29681c9b3451231c6c71e230c91f44e9b3670 Mon Sep 17 00:00:00 2001 From: Agent Smith <asmith@wgz.com> Date: Tue, 26 Nov 2002 00:54:27 +0000 Subject: [PATCH] dont put flies in the stdout soup patch by (Agent Smith <asmith at wgz dot com>) Originally committed as revision 1277 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpeg12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index db954383038..c55259974e3 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1945,7 +1945,7 @@ static int mpeg_decode_frame(AVCodecContext *avctx, *data_size = sizeof(AVPicture); goto the_end; }else if(ret<0){ - printf("Error while decoding slice\n"); + fprintf(stderr,"Error while decoding slice\n"); if(ret==DECODE_SLICE_FATAL_ERROR) return -1; } } -- GitLab