summaryrefslogtreecommitdiff
path: root/ext/x264
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-07-15 15:01:09 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-07-15 15:01:09 +0100
commit0d73cb55b18d9536a54124ec4321ccc33b2d4940 (patch)
treee2d90c4ed78fed6f1744033379d43c2f77e85195 /ext/x264
parent58a23c99e932eb4a221673a118d1675fdabd58e2 (diff)
x264enc: fix indentation
Diffstat (limited to 'ext/x264')
-rw-r--r--ext/x264/gstx264enc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/x264/gstx264enc.c b/ext/x264/gstx264enc.c
index 57ecc68d..78ee126f 100644
--- a/ext/x264/gstx264enc.c
+++ b/ext/x264/gstx264enc.c
@@ -2905,11 +2905,13 @@ plugin_init (GstPlugin * plugin)
default_vtable.x264_encoder_encode = x264_encoder_encode;
default_vtable.x264_encoder_headers = x264_encoder_headers;
default_vtable.x264_encoder_intra_refresh = x264_encoder_intra_refresh;
- default_vtable.x264_encoder_maximum_delayed_frames = x264_encoder_maximum_delayed_frames;
+ default_vtable.x264_encoder_maximum_delayed_frames =
+ x264_encoder_maximum_delayed_frames;
default_vtable.x264_encoder_open = x264_encoder_open;
default_vtable.x264_encoder_reconfig = x264_encoder_reconfig;
default_vtable.x264_levels = &x264_levels;
- default_vtable.x264_param_apply_fastfirstpass = x264_param_apply_fastfirstpass;
+ default_vtable.x264_param_apply_fastfirstpass =
+ x264_param_apply_fastfirstpass;
default_vtable.x264_param_apply_profile = x264_param_apply_profile;
default_vtable.x264_param_default = x264_param_default;
default_vtable.x264_param_default_preset = x264_param_default_preset;