Commit 0438b6df authored by Francois Cartegnie's avatar Francois Cartegnie

core: decoder_synchro: fix integer overflow (cid #1048882)

parent a4fdb5fa
...@@ -225,7 +225,7 @@ bool decoder_SynchroChoose( decoder_synchro_t * p_synchro, int i_coding_type, ...@@ -225,7 +225,7 @@ bool decoder_SynchroChoose( decoder_synchro_t * p_synchro, int i_coding_type,
i_current_rate = decoder_GetDisplayRate( p_synchro->p_dec ); i_current_rate = decoder_GetDisplayRate( p_synchro->p_dec );
now = mdate(); now = mdate();
period = 1000000 * 1001 / p_synchro->i_frame_rate period = CLOCK_FREQ * 1001 / p_synchro->i_frame_rate
* i_current_rate / INPUT_RATE_DEFAULT; * i_current_rate / INPUT_RATE_DEFAULT;
p_synchro->i_render_time = i_render_time; p_synchro->i_render_time = i_render_time;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment