[vlc-commits] commit: x264: b_vfr_input came in X264_BUILD >= 81 (Ilkka Ollakka )
git at videolan.org
git at videolan.org
Tue Apr 6 12:40:33 CEST 2010
vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Tue Apr 6 13:40:06 2010 +0300| [bf60a1b30bc85d71d817c6d06a4190ce3a2ba706] | committer: Ilkka Ollakka
x264: b_vfr_input came in X264_BUILD >= 81
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bf60a1b30bc85d71d817c6d06a4190ce3a2ba706
---
modules/codec/x264.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index 1bc4214..42ee3c1 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -1069,7 +1069,9 @@ static int Open ( vlc_object_t *p_this )
{
p_sys->param.i_fps_num = p_enc->fmt_in.video.i_frame_rate;
p_sys->param.i_fps_den = p_enc->fmt_in.video.i_frame_rate_base;
+#if X264_BUILD >= 81
p_sys->param.b_vfr_input = 0;
+#endif
}
/* Check slice-options */
More information about the vlc-commits
mailing list