[vlc-commits] codec: cc: interpolate caption time by decoding speed

Francois Cartegnie git at videolan.org
Thu Aug 13 14:19:38 CEST 2015


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sat Aug  8 00:26:50 2015 +0200| [3b60c9da2993432f36765d4fe24e88485f9c1e53] | committer: Francois Cartegnie

codec: cc: interpolate caption time by decoding speed

caption data rate is 2 bytes per frame at 30 fps

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3b60c9da2993432f36765d4fe24e88485f9c1e53
---

 modules/codec/cc.c |   12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/modules/codec/cc.c b/modules/codec/cc.c
index 314e360..d8fa66e 100644
--- a/modules/codec/cc.c
+++ b/modules/codec/cc.c
@@ -166,6 +166,8 @@ struct decoder_sys_t
     int i_field;
     int i_channel;
 
+    mtime_t i_display_time;
+
     eia608_t eia608;
     bool b_opaque;
 };
@@ -365,7 +367,10 @@ static subpicture_t *Convert( decoder_t *p_dec, block_t **pp_block )
     block_t *p_block = *pp_block;
 
     decoder_sys_t *p_sys = p_dec->p_sys;
-    const int64_t i_pts = p_block->i_pts;
+
+    if( p_sys->i_display_time == VLC_TS_INVALID )
+        p_sys->i_display_time = p_block->i_pts;
+
     eia608_status_t i_status = EIA608_STATUS_DEFAULT;
 
     /* TODO do the real decoding here */
@@ -376,10 +381,15 @@ static subpicture_t *Convert( decoder_t *p_dec, block_t **pp_block )
 
         p_block->i_buffer -= 3;
         p_block->p_buffer += 3;
+        p_sys->i_display_time += CLOCK_FREQ / 30;
     }
+
+    const mtime_t i_pts = p_sys->i_display_time;
+
     if( p_block->i_buffer < 3 )
     {
         block_Release( p_block );
+        p_sys->i_display_time = VLC_TS_INVALID;
         *pp_block = NULL;
     }
 



More information about the vlc-commits mailing list