]> git.sesse.net Git - vlc/commitdiff
* modules/stream_out/transcode.c: lowered the hurry-up treshold a bit.
authorGildas Bazin <gbazin@videolan.org>
Tue, 26 Apr 2005 12:44:03 +0000 (12:44 +0000)
committerGildas Bazin <gbazin@videolan.org>
Tue, 26 Apr 2005 12:44:03 +0000 (12:44 +0000)
modules/stream_out/transcode.c

index 38363a14b8e2c8d60bc01ca1b8a16f9c9e142dd7..a3fecfbad9751fd24449830e84760160bcfe3528 100644 (file)
@@ -1496,10 +1496,10 @@ static int transcode_video_process( sout_stream_t *p_stream,
         if( p_stream->p_sout->i_out_pace_nocontrol && p_sys->b_hurry_up )
         {
             mtime_t current_date = mdate();
-            if( current_date + 100000 > p_pic->date )
+            if( current_date + 50000 > p_pic->date )
             {
                 msg_Dbg( p_stream, "late picture skipped ("I64Fd")",
-                         current_date + 100000 - p_pic->date );
+                         current_date + 50000 - p_pic->date );
                 p_pic->pf_release( p_pic );
                 continue;
             }