From: Mark Nauwelaerts Date: Wed, 9 Aug 2017 17:31:56 +0000 (+0200) Subject: x264enc: add FIXME note for future configuration cleanup X-Git-Tag: 1.19.3~505^2~183 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc826ac6dcf49ffade8baf0c33698f4d1340f1b9;p=platform%2Fupstream%2Fgstreamer.git x264enc: add FIXME note for future configuration cleanup --- diff --git a/ext/x264/gstx264enc.c b/ext/x264/gstx264enc.c index 78ee126..b836dfa 100644 --- a/ext/x264/gstx264enc.c +++ b/ext/x264/gstx264enc.c @@ -1692,6 +1692,14 @@ gst_x264_enc_init_encoder (GstX264Enc * encoder) encoder->x264param.analyse.b_psnr = 0; + /* FIXME 2.0 make configuration more sane and consistent with x264 cmdline: + * + split pass property into a pass property (pass1/2/3 enum) and rc-method + * + bitrate property should only be used in case of CBR method + * + vbv bitrate/buffer should have separate configuration that is then + * applied independently of the mode: + * + either using properties (new) vbv-maxrate and (renamed) vbv-bufsize + * + or dropping vbv-buf-capacity altogether and simply using option-string + */ switch (encoder->pass) { case GST_X264_ENC_PASS_QUANT: encoder->x264param.rc.i_rc_method = X264_RC_CQP;