]> git.sesse.net Git - vlc/commitdiff
Oops fix compilation.
authorLaurent Aimar <fenrir@videolan.org>
Tue, 2 Oct 2007 18:16:55 +0000 (18:16 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 2 Oct 2007 18:16:55 +0000 (18:16 +0000)
modules/codec/ffmpeg/video.c
modules/codec/quicktime.c

index a45e3ac0e6bca50d14bb7944f4a92abd9e5c6e1b..afa4b21b6fe572ba80de7e7fb4cf7245c52c4889 100644 (file)
@@ -573,7 +573,7 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block )
         }
 
         /* Update frame late count (except when doing preroll) */
-        if( p_sys->i_pts && decoder_GetDisplayDate(p_sys->i_pts) <= mdate() &&
+        if( p_sys->i_pts && decoder_GetDisplayDate(p_dec, p_sys->i_pts) <= mdate() &&
             !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
         {
             p_sys->i_late_frames++;
index 5c513e987c1fb307c2336e7abd900b430c682728..56a0af7efe20dae94c919405355fec344e3130a1 100644 (file)
@@ -520,7 +520,7 @@ static aout_buffer_t *DecodeAudio( decoder_t *p_dec, block_t **pp_block )
     if( p_sys->i_out_frames <= 0 )
     {
         p_sys->pts = p_block->i_pts;
-        if( decoder_GetDisplayDate( p_block->i_pts ) < mdate() )
+        if( decoder_GetDisplayDate( p_dec, p_block->i_pts ) < mdate() )
         {
             block_Release( p_block );
             *pp_block = NULL;
@@ -836,7 +836,7 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
  
     i_pts = p_block->i_pts ? p_block->i_pts : p_block->i_dts;
 
-    if( decoder_GetDisplayDate( i_pts ) < mdate() )
+    if( decoder_GetDisplayDate( p_dec, i_pts ) < mdate() )
     {
         p_sys->i_late++;
     }