Skip to content

Commit

Permalink
schroedinger: use CLOCK_FREQ
Browse files Browse the repository at this point in the history
  • Loading branch information
tmatth committed Jul 1, 2014
1 parent 468745c commit a7cf4c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/codec/schroedinger.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ static void SetVideoFormat( decoder_t *p_dec )
p_sys->p_format = schro_decoder_get_video_format(p_sys->p_schro);
if( p_sys->p_format == NULL ) return;

p_sys->i_frame_pts_delta = INT64_C(1000000)
p_sys->i_frame_pts_delta = CLOCK_FREQ
* p_sys->p_format->frame_rate_denominator
/ p_sys->p_format->frame_rate_numerator;

Expand Down

0 comments on commit a7cf4c5

Please sign in to comment.