diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-07-30 21:00:08 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-07-30 21:00:08 +0000 |
commit | 8b44de14d1fa363fa7fe18d015ead0017a0177c8 (patch) | |
tree | a4ddabf3ea7c9fa492b3448341678aba350af933 /libavcodec/dvbsub_parser.c | |
parent | 7881793dd0b83bf96ef83c4780da6baeb255406e (diff) | |
download | ffmpeg-8b44de14d1fa363fa7fe18d015ead0017a0177c8.tar.gz |
Change av_log() calls surrounded by '#ifdef DEBUG' into dprintf macros.
Originally committed as revision 19550 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dvbsub_parser.c')
-rw-r--r-- | libavcodec/dvbsub_parser.c | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/libavcodec/dvbsub_parser.c b/libavcodec/dvbsub_parser.c index 11ade86627..c9ccfd0d9c 100644 --- a/libavcodec/dvbsub_parser.c +++ b/libavcodec/dvbsub_parser.c @@ -55,10 +55,8 @@ static int dvbsub_parse(AVCodecParserContext *s, uint8_t *p, *p_end; int len, buf_pos = 0; -#ifdef DEBUG - av_log(avctx, AV_LOG_INFO, "DVB parse packet pts=%"PRIx64", lpts=%"PRIx64", cpts=%"PRIx64":\n", + dprintf(avctx, "DVB parse packet pts=%"PRIx64", lpts=%"PRIx64", cpts=%"PRIx64":\n", s->pts, s->last_pts, s->cur_frame_pts[s->cur_frame_start_index]); -#endif #ifdef DEBUG_PACKET_CONTENTS int i; @@ -84,19 +82,15 @@ static int dvbsub_parse(AVCodecParserContext *s, { if (pc->packet_index != pc->packet_start) { -#ifdef DEBUG - av_log(avctx, AV_LOG_INFO, "Discarding %d bytes\n", - pc->packet_index - pc->packet_start); -#endif + dprintf(avctx, "Discarding %d bytes\n", + pc->packet_index - pc->packet_start); } pc->packet_start = 0; pc->packet_index = 0; if (buf_size < 2 || buf[0] != 0x20 || buf[1] != 0x00) { -#ifdef DEBUG - av_log(avctx, AV_LOG_INFO, "Bad packet header\n"); -#endif + dprintf(avctx, "Bad packet header\n"); return -1; } @@ -153,9 +147,7 @@ static int dvbsub_parse(AVCodecParserContext *s, } else if (*p == 0xff) { if (p + 1 < p_end) { -#ifdef DEBUG - av_log(avctx, AV_LOG_INFO, "Junk at end of packet\n"); -#endif + dprintf(avctx, "Junk at end of packet\n"); } pc->packet_index = p - pc->packet_buf; pc->in_packet = 0; |