summaryrefslogtreecommitdiff
path: root/libavcodec/qtrle.c
diff options
context:
space:
mode:
authorRoberto Togni <r_togni@tiscali.it>2004-02-14 17:11:46 +0000
committerRoberto Togni <r_togni@tiscali.it>2004-02-14 17:11:46 +0000
commit42608d6508636be399e2f91003e98bc74ef96138 (patch)
tree350d96400a38654690dc25c9a4a19d9e68a810b7 /libavcodec/qtrle.c
parentac9fe33d0ee55372b75fbae93d2954cff9974bf0 (diff)
Use av_log
Originally committed as revision 2784 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qtrle.c')
-rw-r--r--libavcodec/qtrle.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/qtrle.c b/libavcodec/qtrle.c
index e02ecb13fb..c110272941 100644
--- a/libavcodec/qtrle.c
+++ b/libavcodec/qtrle.c
@@ -54,14 +54,14 @@ typedef struct QtrleContext {
#define CHECK_STREAM_PTR(n) \
if ((stream_ptr + n) > s->size) { \
- printf ("QT RLE problem: stream_ptr out of bounds (%d >= %d)\n", \
+ av_log (s->avctx, AV_LOG_INFO, "Problem: stream_ptr out of bounds (%d >= %d)\n", \
stream_ptr + n, s->size); \
return; \
}
#define CHECK_PIXEL_PTR(n) \
if (pixel_ptr + n > pixel_limit) { \
- printf ("QT RLE problem: pixel_ptr >= pixel_limit (%d >= %d)\n", \
+ av_log (s->avctx, AV_LOG_INFO, "Problem: pixel_ptr >= pixel_limit (%d >= %d)\n", \
pixel_ptr + n, pixel_limit); \
return; \
} \
@@ -428,7 +428,7 @@ static int qtrle_decode_init(AVCodecContext *avctx)
break;
default:
- printf ("QT RLE: Unsupported colorspace: %d bits/sample?\n",
+ av_log (avctx, AV_LOG_ERROR, "Unsupported colorspace: %d bits/sample?\n",
avctx->bits_per_sample);
break;
}
@@ -457,7 +457,7 @@ static int qtrle_decode_frame(AVCodecContext *avctx,
s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE |
FF_BUFFER_HINTS_REUSABLE | FF_BUFFER_HINTS_READABLE;
if (avctx->reget_buffer(avctx, &s->frame)) {
- printf ("reget_buffer() failed\n");
+ av_log (s->avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
return -1;
}
@@ -501,7 +501,7 @@ static int qtrle_decode_frame(AVCodecContext *avctx,
break;
default:
- printf ("QT RLE: Unsupported colorspace: %d bits/sample?\n",
+ av_log (s->avctx, AV_LOG_ERROR, "Unsupported colorspace: %d bits/sample?\n",
avctx->bits_per_sample);
break;
}