]> git.sesse.net Git - vlc/commitdiff
demux: vc1: use CLOCK_FREQ
authorTristan Matthews <le.businessman@gmail.com>
Thu, 24 Jul 2014 14:47:23 +0000 (10:47 -0400)
committerTristan Matthews <le.businessman@gmail.com>
Thu, 24 Jul 2014 14:47:23 +0000 (10:47 -0400)
modules/demux/vc1.c

index 9360902eb2b283d0cf526e4dafb986fa2337cfb8..69c8af610e9462ab734bafc38ff3e35600a4cde1 100644 (file)
@@ -173,13 +173,13 @@ static int Demux( demux_t *p_demux)
 
             if( p_sys->p_packetizer->fmt_out.video.i_frame_rate > 0 &&
                 p_sys->p_packetizer->fmt_out.video.i_frame_rate_base > 0 )
-                p_sys->i_dts += INT64_C(1000000) *
+                p_sys->i_dts += CLOCK_FREQ *
                     p_sys->p_packetizer->fmt_out.video.i_frame_rate_base /
                     p_sys->p_packetizer->fmt_out.video.i_frame_rate;
             else if( p_sys->f_fps > 0.001 )
-                p_sys->i_dts += (int64_t)((double)1000000.0 / p_sys->f_fps);
+                p_sys->i_dts += (int64_t)((double) CLOCK_FREQ / p_sys->f_fps);
             else
-                p_sys->i_dts += INT64_C(1000000) / 25;
+                p_sys->i_dts += CLOCK_FREQ / 25;
         }
     }
     return 1;