diff options
author | Anshul Maheshwari <er.anshul.maheshwari@gmail.com> | 2015-01-20 15:54:58 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-20 14:39:32 +0100 |
commit | 88ba88e8877f30737f6145cb06484032923bcdd0 (patch) | |
tree | 95f967d99d588b406a16048a1b9e6019fa1d862b | |
parent | 012559f2bb59366331f5ab77de6ce8c3f833b1bc (diff) | |
download | ffmpeg-88ba88e8877f30737f6145cb06484032923bcdd0.tar.gz |
CHAR_DEBUG to av_dlog
Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ccaption_dec.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c index 1f2dfe6740..3498d09421 100644 --- a/libavcodec/ccaption_dec.c +++ b/libavcodec/ccaption_dec.c @@ -23,7 +23,6 @@ #include "ass.h" #include "libavutil/opt.h" -#define CHAR_DEBUG #define SCREEN_ROWS 15 #define SCREEN_COLUMNS 32 @@ -400,9 +399,10 @@ static void handle_char(CCaptionSubContext *ctx, char hi, char lo, int64_t pts) /* reset prev command since character can repeat */ ctx->prev_cmd[0] = 0; ctx->prev_cmd[1] = 0; -#ifdef CHAR_DEBUG - av_log(ctx, AV_LOG_DEBUG,"(%c,%c)\n",hi,lo); -#endif + if (lo) + av_dlog(ctx, "(%c,%c)\n",hi,lo); + else + av_dlog(ctx, "(%c)\n",hi); } static int process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint8_t lo) @@ -499,9 +499,7 @@ static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avp { int start_time = av_rescale_q(ctx->start_time, avctx->time_base, (AVRational){ 1, 100 }); int end_time = av_rescale_q(ctx->end_time, avctx->time_base, (AVRational){ 1, 100 }); -#ifdef CHAR_DEBUG - av_log(ctx, AV_LOG_DEBUG,"cdp writing data (%s)\n",ctx->buffer.str); -#endif + av_dlog(ctx, "cdp writing data (%s)\n",ctx->buffer.str); ret = ff_ass_add_rect(sub, ctx->buffer.str, start_time, end_time - start_time , 0); if (ret < 0) return ret; |