mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
x264enc: increase bitrate limit from 100Mbps to 2Gbps
Don't artificially limit the bitrate, x264enc allows much higher bitrates, and for intra-only 4k AVC they are needed. x264 clips to 2Gbps internally, so use that as limit for now. https://bugzilla.gnome.org/show_bug.cgi?id=758620
This commit is contained in:
parent
7d7bab4640
commit
f037e7e59e
1 changed files with 1 additions and 1 deletions
|
@ -811,7 +811,7 @@ gst_x264_enc_class_init (GstX264EncClass * klass)
|
|||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
g_object_class_install_property (gobject_class, ARG_BITRATE,
|
||||
g_param_spec_uint ("bitrate", "Bitrate", "Bitrate in kbit/sec", 1,
|
||||
100 * 1024, ARG_BITRATE_DEFAULT,
|
||||
2000 * 1024, ARG_BITRATE_DEFAULT,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
||||
GST_PARAM_MUTABLE_PLAYING));
|
||||
g_object_class_install_property (gobject_class, ARG_VBV_BUF_CAPACITY,
|
||||
|
|
Loading…
Reference in a new issue