[vlc-devel] commit: Updated FLAC to use VLC_TS_INVALID/0. (Laurent Aimar )

git version control git at videolan.org
Mon Dec 21 00:02:32 CET 2009


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sun Dec 20 16:48:24 2009 +0100| [dd05d100e5de2f2b11bf57ad851f2e07d343ecb4] | committer: Laurent Aimar 

Updated FLAC to use VLC_TS_INVALID/0.

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

 modules/demux/flac.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/demux/flac.c b/modules/demux/flac.c
index 8b0ca38..f402e27 100644
--- a/modules/demux/flac.c
+++ b/modules/demux/flac.c
@@ -204,7 +204,7 @@ static int Demux( demux_t *p_demux )
     if( !( p_block_in = stream_Block( p_demux->s, FLAC_PACKET_SIZE ) ) )
         return 0;
 
-    p_block_in->i_pts = p_block_in->i_dts = p_sys->b_start ? 1 : 0;
+    p_block_in->i_pts = p_block_in->i_dts = p_sys->b_start ? VLC_TS_0 : VLC_TS_INVALID;
     p_sys->b_start = false;
 
     while( (p_block_out = p_sys->p_packetizer->pf_packetize(
@@ -223,7 +223,7 @@ static int Demux( demux_t *p_demux )
                 p_sys->p_es = es_out_Add( p_demux->out, &p_sys->p_packetizer->fmt_out);
             }
 
-            p_sys->i_pts = p_block_out->i_dts;
+            p_sys->i_pts = p_block_out->i_dts - VLC_TS_0;
 
             /* Correct timestamp */
             p_block_out->i_pts += p_sys->i_time_offset;




More information about the vlc-devel mailing list