mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 11:30:59 +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
4894e7b3ee
commit
a8a3a6ec3e
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ enum Mode {
|
||||||
#[gflags(name = "Calculate loudness range", nick = "loudness-range")]
|
#[gflags(name = "Calculate loudness range", nick = "loudness-range")]
|
||||||
LOUDNESS_RANGE = 0b00001000,
|
LOUDNESS_RANGE = 0b00001000,
|
||||||
#[gflags(name = "Calculate sample peak", nick = "sample-peak")]
|
#[gflags(name = "Calculate sample peak", nick = "sample-peak")]
|
||||||
SAMPLE_PEAK = 0b000100000,
|
SAMPLE_PEAK = 0b00010000,
|
||||||
#[gflags(name = "Calculate true peak", nick = "true-peak")]
|
#[gflags(name = "Calculate true peak", nick = "true-peak")]
|
||||||
TRUE_PEAK = 0b00100000,
|
TRUE_PEAK = 0b00100000,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue