mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-30 07:20:59 +00:00
audioloudnorm: Allow more than 2 channels
There's no limitation of the number of channels in the code, so allow more in the caps too.
This commit is contained in:
parent
ba7186aa6e
commit
3f05e448d7
1 changed files with 1 additions and 1 deletions
|
@ -1793,7 +1793,7 @@ impl ObjectSubclass for AudioLoudNorm {
|
||||||
&[
|
&[
|
||||||
("format", &gst_audio::AUDIO_FORMAT_F64.to_str()),
|
("format", &gst_audio::AUDIO_FORMAT_F64.to_str()),
|
||||||
("rate", &192_000i32),
|
("rate", &192_000i32),
|
||||||
("channels", &gst::IntRange::<i32>::new(1, 2)),
|
("channels", &gst::IntRange::<i32>::new(1, std::i32::MAX)),
|
||||||
("layout", &"interleaved"),
|
("layout", &"interleaved"),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue