mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 07:28:53 +00:00
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
This commit is contained in:
parent
e454662c41
commit
3a96fb6bf0
2 changed files with 23 additions and 0 deletions
22
ChangeLog
22
ChangeLog
|
@ -1,3 +1,25 @@
|
||||||
|
2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
Submitted by: Luca Ferretti <elle.uca@infinito.it>
|
Submitted by: Luca Ferretti <elle.uca@infinito.it>
|
||||||
|
|
|
@ -19,6 +19,7 @@ linear_factory (void)
|
||||||
"width", G_TYPE_INT, 16,
|
"width", G_TYPE_INT, 16,
|
||||||
"depth", G_TYPE_INT, 16,
|
"depth", G_TYPE_INT, 16,
|
||||||
"endianness", G_TYPE_INT, G_BYTE_ORDER,
|
"endianness", G_TYPE_INT, G_BYTE_ORDER,
|
||||||
|
"signed", G_TYPE_BOOLEAN, TRUE,
|
||||||
"rate", GST_TYPE_INT_RANGE, 8000, 192000,
|
"rate", GST_TYPE_INT_RANGE, 8000, 192000,
|
||||||
"channels", GST_TYPE_INT_RANGE, 1, 2, NULL);
|
"channels", GST_TYPE_INT_RANGE, 1, 2, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue