mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
ext/x264/gstx264enc.c: Fix build against the libx264 version that ships with debian stable.
Original commit message from CVS: * ext/x264/gstx264enc.c: Fix build against the libx264 version that ships with debian stable.
This commit is contained in:
parent
843665f109
commit
936460ea72
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-10-26 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/x264/gstx264enc.c:
|
||||
Fix build against the libx264 version that ships with debian stable.
|
||||
|
||||
2007-10-26 Julien MOUTTE <julien@moutte.net>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -593,7 +593,9 @@ gst_x264_enc_init_encoder (GstX264Enc * encoder)
|
|||
encoder->x264param.b_deblocking_filter = 1;
|
||||
encoder->x264param.i_deblocking_filter_alphac0 = 0;
|
||||
encoder->x264param.i_deblocking_filter_beta = 0;
|
||||
#ifdef X264_RC_ABR
|
||||
encoder->x264param.rc.i_rc_method = X264_RC_ABR;
|
||||
#endif
|
||||
encoder->x264param.rc.i_bitrate = encoder->bitrate;
|
||||
encoder->x264param.rc.i_vbv_max_bitrate = encoder->bitrate;
|
||||
encoder->x264param.rc.i_vbv_buffer_size
|
||||
|
|
Loading…
Reference in a new issue