diff options
author | Michel Bardiaux | 2003-11-03 13:26:22 +0000 |
---|---|---|
committer | Michael Niedermayer | 2003-11-03 13:26:22 +0000 |
commit | 9b879566789379631f02b83be367ca55c88a1ae9 (patch) | |
tree | ee2b274b74329eb94548dc6c85bc966485c75d2a /libavcodec/ra288.c | |
parent | 8bae9ddc91f6a083d420494bbd652d8258649066 (diff) |
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index b59074822b..a44eb96f14 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -244,7 +244,7 @@ static int ra288_decode_frame(AVCodecContext * avctx, int i,j; if(buf_size<w*h) { - fprintf(stderr,"ffra288: Error! Input buffer is too small [%d<%d]\n",buf_size,w*h); + av_log(avctx, AV_LOG_ERROR, "ffra288: Error! Input buffer is too small [%d<%d]\n",buf_size,w*h); return 0; } datao = data; @@ -260,7 +260,7 @@ static int ra288_decode_frame(AVCodecContext * avctx, } else { - fprintf(stderr,"ffra288: Error: need extra data!!!\n"); + av_log(avctx, AV_LOG_ERROR, "ffra288: Error: need extra data!!!\n"); return 0; } } |