diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/arts/gst_arts.c | 3 | ||||
-rw-r--r-- | ext/audiofile/gstafparse.c | 4 | ||||
-rw-r--r-- | ext/audiofile/gstafsink.c | 4 | ||||
-rw-r--r-- | ext/audiofile/gstafsrc.c | 4 | ||||
-rw-r--r-- | ext/nas/nassink.c | 2 | ||||
-rw-r--r-- | ext/swfdec/gstswfdec.c | 4 |
6 files changed, 7 insertions, 14 deletions
diff --git a/ext/arts/gst_arts.c b/ext/arts/gst_arts.c index 64ff2317..a6c9621d 100644 --- a/ext/arts/gst_arts.c +++ b/ext/arts/gst_arts.c @@ -59,7 +59,8 @@ static GstStaticPadTemplate sink_temp = GST_STATIC_PAD_TEMPLATE ("sink", "depth = (int) 16, " "width = (int) 16, " "signed = (boolean) true, " - "channels = (int) 2, " "endianness = (int) byte_order") + "channels = (int) 2, " + "rate = (int) 44100, " "endianness = (int) byte_order") ); static GstStaticPadTemplate src_temp = GST_STATIC_PAD_TEMPLATE ("src", diff --git a/ext/audiofile/gstafparse.c b/ext/audiofile/gstafparse.c index 455ea31c..4eece0c8 100644 --- a/ext/audiofile/gstafparse.c +++ b/ext/audiofile/gstafparse.c @@ -61,9 +61,7 @@ GST_STATIC_PAD_TEMPLATE ("src", "channels = (int) [ 1, MAX ], " "endianness = (int) BYTE_ORDER, " "width = (int) { 8, 16 }, " - "depth = (int) { 8, 16 }, " - "signed = (boolean) { true, false }, " - "buffer-frames = (int) [ 1, MAX ]") + "depth = (int) { 8, 16 }, " "signed = (boolean) { true, false }") ); static GstStaticPadTemplate afparse_sink_factory = diff --git a/ext/audiofile/gstafsink.c b/ext/audiofile/gstafsink.c index a24991d1..872864b2 100644 --- a/ext/audiofile/gstafsink.c +++ b/ext/audiofile/gstafsink.c @@ -69,9 +69,7 @@ GST_STATIC_PAD_TEMPLATE ("sink", "channels = (int) [ 1, 2 ], " "endianness = (int) BYTE_ORDER, " "width = (int) { 8, 16 }, " - "depth = (int) { 8, 16 }, " - "signed = (boolean) { true, false }, " - "buffer-frames = (int) [ 1, MAX ]") + "depth = (int) { 8, 16 }, " "signed = (boolean) { true, false }") ); /* we use an enum for the output type arg */ diff --git a/ext/audiofile/gstafsrc.c b/ext/audiofile/gstafsrc.c index 82f3a6bb..91fc6cf3 100644 --- a/ext/audiofile/gstafsrc.c +++ b/ext/audiofile/gstafsrc.c @@ -66,9 +66,7 @@ static GstStaticPadTemplate afsrc_src_factory = GST_STATIC_PAD_TEMPLATE ("src", "channels = (int) [ 1, MAX ], " "endianness = (int) BYTE_ORDER, " "width = (int) { 8, 16 }, " - "depth = (int) { 8, 16 }, " - "signed = (boolean) { true, false }, " - "buffer-frames = (int) [ 1, MAX ]") + "depth = (int) { 8, 16 }, " "signed = (boolean) { true, false }") ); /* we use an enum for the output type arg */ diff --git a/ext/nas/nassink.c b/ext/nas/nassink.c index 264c891c..7eb47bf9 100644 --- a/ext/nas/nassink.c +++ b/ext/nas/nassink.c @@ -51,7 +51,7 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, GST_STATIC_CAPS ("audio/x-raw-int, " - "endianess = (int) BYTE_ORDER, " + "endianness = (int) BYTE_ORDER, " "signed = (boolean) TRUE, " "width = (int) 16, " "depth = (int) 16, " diff --git a/ext/swfdec/gstswfdec.c b/ext/swfdec/gstswfdec.c index 929e14db..4667ef1f 100644 --- a/ext/swfdec/gstswfdec.c +++ b/ext/swfdec/gstswfdec.c @@ -61,9 +61,7 @@ GST_STATIC_PAD_TEMPLATE ("audio_00", "rate = (int) 44100, " "channels = (int) 2, " "endianness = (int) BYTE_ORDER, " - "width = (int) 16, " - "depth = (int) 16, " - "signed = (boolean) true, " "buffer-frames = (int) [ 1, MAX ]") + "width = (int) 16, " "depth = (int) 16, " "signed = (boolean) true") ); static GstStaticPadTemplate sink_template_factory = |