summaryrefslogtreecommitdiff
path: root/ext/mpeg2enc
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2014-06-01 10:43:49 +0100
committerTim-Philipp Müller <tim@centricular.com>2014-06-01 10:47:17 +0100
commit0eed275a5125a3c2b9fa1d135b8d4bb0ae393271 (patch)
tree4e73a89bfcb4db118cbddca80f8c12c6e1dac999 /ext/mpeg2enc
parentef143252d07e7e3ed01b66e8c0fb10dfaff7ee9a (diff)
downloadgstreamer-plugins-bad-0eed275a5125a3c2b9fa1d135b8d4bb0ae393271.tar.gz
mpeg2enc: increase max. allowed value for bitrate property
For DVD the limit is around 10Mbit/s, but for e.g. ATSC it could be much higher.
Diffstat (limited to 'ext/mpeg2enc')
-rw-r--r--ext/mpeg2enc/gstmpeg2encoptions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mpeg2enc/gstmpeg2encoptions.cc b/ext/mpeg2enc/gstmpeg2encoptions.cc
index ae4a738f6..b27a70f3d 100644
--- a/ext/mpeg2enc/gstmpeg2encoptions.cc
+++ b/ext/mpeg2enc/gstmpeg2encoptions.cc
@@ -335,7 +335,7 @@ GstMpeg2EncOptions::initProperties (GObjectClass * klass)
/* general encoding stream options */
g_object_class_install_property (klass, ARG_BITRATE,
g_param_spec_int ("bitrate", "Bitrate", "Compressed video bitrate (kbps)",
- 0, 10 * 1000, DEFAULT_BITRATE,
+ 0, 40 * 1000, DEFAULT_BITRATE,
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
g_object_class_install_property (klass, ARG_NONVIDEO_BITRATE,
g_param_spec_int ("non-video-bitrate", "Non-video bitrate",