mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 09:31:06 +00:00
audio: Add new_interleaved() to AudioCapsBuilder
Because it's very common that elements support only interleaved audio.
This commit is contained in:
parent
2cb7fc8122
commit
583ef0395d
1 changed files with 4 additions and 0 deletions
|
@ -19,6 +19,10 @@ impl AudioCapsBuilder<gst::caps::NoFeature> {
|
|||
.format_list(AudioFormat::iter_raw())
|
||||
}
|
||||
|
||||
pub fn new_interleaved() -> Self {
|
||||
AudioCapsBuilder::new().layout(AudioLayout::Interleaved)
|
||||
}
|
||||
|
||||
pub fn any_features(self) -> AudioCapsBuilder<gst::caps::HasFeatures> {
|
||||
AudioCapsBuilder {
|
||||
builder: self.builder.any_features(),
|
||||
|
|
Loading…
Reference in a new issue