mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-28 22:41:02 +00:00
rav1enc: document bitrate property unit
See:
e34e772e47/src/rate.rs (L365)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1667>
This commit is contained in:
parent
12be9a24a6
commit
000c486568
2 changed files with 2 additions and 2 deletions
|
@ -5101,7 +5101,7 @@
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"bitrate": {
|
"bitrate": {
|
||||||
"blurb": "Bitrate",
|
"blurb": "Bitrate in bits per second",
|
||||||
"conditionally-available": false,
|
"conditionally-available": false,
|
||||||
"construct": false,
|
"construct": false,
|
||||||
"construct-only": false,
|
"construct-only": false,
|
||||||
|
|
|
@ -278,7 +278,7 @@ impl ObjectImpl for Rav1Enc {
|
||||||
.build(),
|
.build(),
|
||||||
glib::ParamSpecInt::builder("bitrate")
|
glib::ParamSpecInt::builder("bitrate")
|
||||||
.nick("Bitrate")
|
.nick("Bitrate")
|
||||||
.blurb("Bitrate")
|
.blurb("Bitrate in bits per second")
|
||||||
.minimum(0)
|
.minimum(0)
|
||||||
.default_value(DEFAULT_BITRATE)
|
.default_value(DEFAULT_BITRATE)
|
||||||
.mutable_ready()
|
.mutable_ready()
|
||||||
|
|
Loading…
Reference in a new issue