Commit 96120c20 authored by Laurent Aimar's avatar Laurent Aimar

* compilation fix.

parent f006d9e7
...@@ -139,8 +139,8 @@ static int Open ( vlc_object_t *p_this ) ...@@ -139,8 +139,8 @@ static int Open ( vlc_object_t *p_this )
} }
if( p_enc->fmt_in.video.i_frame_rate_base > 0 ) if( p_enc->fmt_in.video.i_frame_rate_base > 0 )
{ {
p_sys->param.f_fps = (float)p_enc->fmt_in.video.i_frame_rate / p_sys->param.i_fps_num = p_enc->fmt_in.video.i_frame_rate;
(float)p_enc->fmt_in.video.i_frame_rate_base; p_sys->param.i_fps_den = p_enc->fmt_in.video.i_frame_rate_base;
} }
if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_MMX) ) if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_MMX) )
{ {
......
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