mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-18 09:31:05 +00:00
ebur128level: Fix mode bitflags
Currently the flag of true peak and sample peak are the same and therefore true peak always wins, sample peak never.
This commit is contained in:
parent
6ad453e726
commit
b62b5f9643
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ enum Mode {
|
|||
#[gflags(name = "Calculate loudness range", nick = "loudness-range")]
|
||||
LOUDNESS_RANGE = 0b00001000,
|
||||
#[gflags(name = "Calculate sample peak", nick = "sample-peak")]
|
||||
SAMPLE_PEAK = 0b000100000,
|
||||
SAMPLE_PEAK = 0b00010000,
|
||||
#[gflags(name = "Calculate true peak", nick = "true-peak")]
|
||||
TRUE_PEAK = 0b00100000,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue