From 744f2da62bf6c536e43348dbc309c38e546a65db Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 9 Nov 2004 06:08:22 +0000 Subject: ext/alsa/gstalsa.c: buffer-frames property was missing Original commit message from CVS: * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal): buffer-frames property was missing * ext/arts/gst_arts.c: rate missing from sinkcaps * ext/audiofile/gstafparse.c: * ext/audiofile/gstafsink.c: * ext/audiofile/gstafsrc.c: * ext/swfdec/gstswfdec.c: int audio doesn't know buffer-frames * ext/cdparanoia/gstcdparanoia.c: int audio doesn't know chunksize either * ext/nas/nassink.c: it's endianness, not endianess * gst-libs/gst/audio/audio.h: make float standard pad template caps really describe float * gst/law/mulaw.c: (linear_factory): signed only, please * gst/mpegstream/gstdvddemux.c: widths of 20 are not valid --- ext/audiofile/gstafparse.c | 4 +--- ext/audiofile/gstafsink.c | 4 +--- ext/audiofile/gstafsrc.c | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) (limited to 'ext/audiofile') 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 */ -- cgit v1.2.1