mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
replaygain: Update for the new audio caps
This commit is contained in:
parent
dd84b002b0
commit
7459bdd414
3 changed files with 13 additions and 1 deletions
|
@ -105,7 +105,15 @@ enum
|
|||
* "usual" sample rates in the 8000 to 48000 Hz range. */
|
||||
#define REPLAY_GAIN_CAPS "audio/x-raw," \
|
||||
"format = (string) { "GST_AUDIO_NE(F32)","GST_AUDIO_NE(S16)" }, " \
|
||||
"channels = (int) { 1, 2 }, " \
|
||||
"layout = (string) interleaved, " \
|
||||
"channels = (int) 1, " \
|
||||
"rate = (int) { 8000, 11025, 12000, 16000, 22050, 24000, 32000, " \
|
||||
"44100, 48000 }; " \
|
||||
"audio/x-raw," \
|
||||
"format = (string) { "GST_AUDIO_NE(F32)","GST_AUDIO_NE(S16)" }, " \
|
||||
"layout = (string) interleaved, " \
|
||||
"channels = (int) 2, " \
|
||||
"channel-mask = (bitmask) 0x3, " \
|
||||
"rate = (int) { 8000, 11025, 12000, 16000, 22050, 24000, 32000, " \
|
||||
"44100, 48000 }"
|
||||
|
||||
|
|
|
@ -63,6 +63,7 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw, "
|
||||
"format = (string) " GST_AUDIO_NE (F32) ", "
|
||||
"layout = (string) { interleaved, non-interleaved }, "
|
||||
"channels = (int) [1, MAX], " "rate = (int) [1, MAX]"));
|
||||
|
||||
static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
|
@ -70,6 +71,7 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
|||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw, "
|
||||
"format = (string) " GST_AUDIO_NE (F32) ", "
|
||||
"layout = (string) { interleaved, non-interleaved}, "
|
||||
"channels = (int) [1, MAX], " "rate = (int) [1, MAX]"));
|
||||
|
||||
#define gst_rg_limiter_parent_class parent_class
|
||||
|
|
|
@ -104,6 +104,7 @@ static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw, "
|
||||
"format = (string) " FORMAT ", "
|
||||
"layout = (string) { interleaved, non-interleaved }, "
|
||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, MAX ]"));
|
||||
|
||||
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
|
@ -111,6 +112,7 @@ static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
|||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw, "
|
||||
"format = (string) " FORMAT ", "
|
||||
"layout = (string) { interleaved, non-interleaved }, "
|
||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, MAX ]"));
|
||||
|
||||
#define gst_rg_volume_parent_class parent_class
|
||||
|
|
Loading…
Reference in a new issue