aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--libmpcodecs/ve_x264.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpcodecs/ve_x264.c b/libmpcodecs/ve_x264.c
index 9c24852055..db1caa9887 100644
--- a/libmpcodecs/ve_x264.c
+++ b/libmpcodecs/ve_x264.c
@@ -152,6 +152,8 @@ static int config(struct vf_instance_s* vf, int width, int height, int d_width,
mod->mux->bih->biHeight = height;
mod->mux->aspect = (float)d_width/d_height;
+ // make sure param is initialized
+ x264enc_set_param(NULL, "");
param.i_width = width;
param.i_height = height;
param.i_fps_num = mod->mux->h.dwRate;