1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-16 16:02:54 +02:00

x264: don't set vfr, it maybe wasn't that good idea for default

This commit is contained in:
Ilkka Ollakka 2012-09-13 12:25:41 +03:00
parent 4c29d9c7bf
commit 681278213c

View File

@ -1247,7 +1247,7 @@ static int Open ( vlc_object_t *p_this )
p_sys->param.i_fps_den = p_enc->fmt_in.video.i_frame_rate_base;
p_sys->param.i_timebase_num = 1;
p_sys->param.i_timebase_den = INT64_C(1000000);
p_sys->param.b_vfr_input = 1;
p_sys->param.b_vfr_input = 0;
}
/* Check slice-options */