Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVivia Nikolaidou <vivia@ahiru.eu>2022-10-14 17:50:57 +0300
committerVivia Nikolaidou <vivia@ahiru.eu>2022-10-14 18:21:28 +0300
commitb68832638313c1e659240881a023a3775ba5d4fe (patch)
tree70047761cfb0e48fc9c330308ae022a5623ddf55 /audio/claxon
parent9b1361b538ad2c214012571a22d0c871eb75f805 (diff)
audio: Use channel_mask() for AudioCapsBuilder
Diffstat (limited to 'audio/claxon')
-rw-r--r--audio/claxon/tests/claxondec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/claxon/tests/claxondec.rs b/audio/claxon/tests/claxondec.rs
index c9cfe743..13000ccb 100644
--- a/audio/claxon/tests/claxondec.rs
+++ b/audio/claxon/tests/claxondec.rs
@@ -54,7 +54,7 @@ fn test_stereo_s32() {
.format(gst_audio::AUDIO_FORMAT_S2432)
.rate(44100)
.channels(2)
- .field("channel-mask", gst::Bitmask::new(0x3))
+ .channel_mask(0x3)
.build()
);
}