[FFmpeg-cvslog] lavc/ccaption_dec: extract ass time base into constant

Aman Gupta git at videolan.org
Sat Jan 9 12:33:36 CET 2016


ffmpeg | branch: master | Aman Gupta <aman at tmm1.net> | Tue Jan  5 22:55:18 2016 -0800| [8fd7f03c56f78decf5ee2a9283338794a1f4c4b9] | committer: Clément Bœsch

lavc/ccaption_dec: extract ass time base into constant

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8fd7f03c56f78decf5ee2a9283338794a1f4c4b9
---

 libavcodec/ccaption_dec.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c
index 58bea47..bbbd2d8 100644
--- a/libavcodec/ccaption_dec.c
+++ b/libavcodec/ccaption_dec.c
@@ -30,6 +30,8 @@
 #define UNSET_FLAG(var, val) ( (var) &=  ~( 1 << (val)) )
 #define CHECK_FLAG(var, val) ( (var) &    ( 1 << (val)) )
 
+static const AVRational ass_tb = {1, 100};
+
 /*
  * TODO list
  * 1) handle font and color completely
@@ -512,8 +514,8 @@ static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avp
             process_cc608(ctx, avpkt->pts, *(bptr + i + 1) & 0x7f, *(bptr + i + 2) & 0x7f);
         if (ctx->screen_changed && *ctx->buffer.str)
         {
-            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 });
+            int start_time = av_rescale_q(ctx->start_time, avctx->time_base, ass_tb);
+            int end_time = av_rescale_q(ctx->end_time, avctx->time_base, ass_tb);
             ff_dlog(ctx, "cdp writing data (%s)\n",ctx->buffer.str);
             ret = ff_ass_add_rect_bprint(sub, &ctx->buffer, start_time, end_time - start_time);
             if (ret < 0)



More information about the ffmpeg-cvslog mailing list