mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
ext/theora/theoraenc.c: Remove the 2000 kbit limit to bitrate, since it has no basis in libtheora.
Original commit message from CVS: * ext/theora/theoraenc.c: Remove the 2000 kbit limit to bitrate, since it has no basis in libtheora.
This commit is contained in:
parent
c5ad1c7228
commit
23ca2ae3b1
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-08-12 David Schleef <ds@schleef.org>
|
||||
|
||||
* ext/theora/theoraenc.c: Remove the 2000 kbit limit to bitrate,
|
||||
since it has no basis in libtheora.
|
||||
|
||||
2008-08-12 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst-libs/gst/interfaces/propertyprobe.h:
|
||||
|
|
|
@ -226,7 +226,7 @@ gst_theora_enc_class_init (GstTheoraEncClass * klass)
|
|||
/* general encoding stream options */
|
||||
g_object_class_install_property (gobject_class, ARG_BITRATE,
|
||||
g_param_spec_int ("bitrate", "Bitrate", "Compressed video bitrate (kbps)",
|
||||
0, 2000, THEORA_DEF_BITRATE,
|
||||
0, (1 << 24) - 1, THEORA_DEF_BITRATE,
|
||||
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
g_object_class_install_property (gobject_class, ARG_QUALITY,
|
||||
g_param_spec_int ("quality", "Quality", "Video quality", 0, 63,
|
||||
|
|
Loading…
Reference in a new issue