mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
gst/wavparse/gstwavparse.c: Relax the audio/mpeg caps again and add FIXME: comment.
Original commit message from CVS: * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int), (gst_wavparse_perform_seek), (gst_wavparse_stream_headers), (gst_wavparse_stream_data): Relax the audio/mpeg caps again and add FIXME: comment.
This commit is contained in:
parent
0722106b57
commit
3bf1b5ecf7
2 changed files with 11 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-04-13 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
|
||||
(gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
|
||||
(gst_wavparse_stream_data):
|
||||
Relax the audio/mpeg caps again and add FIXME: comment.
|
||||
|
||||
2007-04-13 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
|
||||
|
|
|
@ -109,7 +109,9 @@ static GstStaticPadTemplate src_template_factory =
|
|||
GST_STATIC_PAD_TEMPLATE ("wavparse_src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_SOMETIMES,
|
||||
/* FIXME: we need to sync this better with gst_riff_create_audio_caps() */
|
||||
/* FIXME: we need to sync this better with gst_riff_create_audio_caps()
|
||||
* shouldn't we use: gst_riff_create_audio_template_caps() ?
|
||||
*/
|
||||
GST_STATIC_CAPS ("audio/x-raw-int, "
|
||||
"endianness = (int) little_endian, "
|
||||
"signed = (boolean) true, "
|
||||
|
@ -133,7 +135,7 @@ static GstStaticPadTemplate src_template_factory =
|
|||
"audio/mpeg, "
|
||||
"mpegversion = (int) 1, "
|
||||
"layer = (int) [ 1, 3 ], "
|
||||
"rate = (int) [ 16000, 48000 ], "
|
||||
"rate = (int) [ 8000, 48000 ], "
|
||||
"channels = (int) [ 1, 2 ]; "
|
||||
"audio/mpeg, "
|
||||
"mpegversion = (int) 4, "
|
||||
|
|
Loading…
Reference in a new issue