mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst/wavparse/gstwavparse.c: Add some fixes from 0.8 branch: allow 24/32bps songs and blockalign samples to the header...
Original commit message from CVS: * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers), (gst_wavparse_stream_data): Add some fixes from 0.8 branch: allow 24/32bps songs and blockalign samples to the header-specified size, if any (#311070); error out on channels==0 or bitrate==0 (#309043, #304588).
This commit is contained in:
parent
bd57e8657c
commit
a0074faed3
2 changed files with 30 additions and 3 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2005-08-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
|
||||||
|
(gst_wavparse_stream_data):
|
||||||
|
Add some fixes from 0.8 branch: allow 24/32bps songs and
|
||||||
|
blockalign samples to the header-specified size, if any
|
||||||
|
(#311070); error out on channels==0 or bitrate==0
|
||||||
|
(#309043, #304588).
|
||||||
|
|
||||||
2005-08-10 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-08-10 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
|
* gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
|
||||||
|
|
|
@ -69,8 +69,8 @@ static GstStaticPadTemplate src_template_factory =
|
||||||
GST_STATIC_CAPS ("audio/x-raw-int, "
|
GST_STATIC_CAPS ("audio/x-raw-int, "
|
||||||
"endianness = (int) little_endian, "
|
"endianness = (int) little_endian, "
|
||||||
"signed = (boolean) { true, false }, "
|
"signed = (boolean) { true, false }, "
|
||||||
"width = (int) { 8, 16 }, "
|
"width = (int) { 8, 16, 24, 32 }, "
|
||||||
"depth = (int) { 8, 16 }, "
|
"depth = (int) { 8, 16, 24, 32 }, "
|
||||||
"rate = (int) [ 8000, 48000 ], "
|
"rate = (int) [ 8000, 48000 ], "
|
||||||
"channels = (int) [ 1, 2 ]; "
|
"channels = (int) [ 1, 2 ]; "
|
||||||
"audio/mpeg, "
|
"audio/mpeg, "
|
||||||
|
@ -750,6 +750,8 @@ gst_wavparse_stream_headers (GstWavParse * wav)
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Note: gst_riff_create_audio_caps might nedd to fix values in
|
||||||
|
* the header header depending on the format, so call it first */
|
||||||
caps =
|
caps =
|
||||||
gst_riff_create_audio_caps (header->format, NULL, header, NULL,
|
gst_riff_create_audio_caps (header->format, NULL, header, NULL,
|
||||||
NULL, NULL);
|
NULL, NULL);
|
||||||
|
@ -757,10 +759,22 @@ gst_wavparse_stream_headers (GstWavParse * wav)
|
||||||
wav->format = header->format;
|
wav->format = header->format;
|
||||||
wav->rate = header->rate;
|
wav->rate = header->rate;
|
||||||
wav->channels = header->channels;
|
wav->channels = header->channels;
|
||||||
|
if (wav->channels == 0) {
|
||||||
|
GST_ELEMENT_ERROR (wav, STREAM, FAILED, (NULL),
|
||||||
|
("Stream claims to contain no channels - invalid data"));
|
||||||
|
g_free (header);
|
||||||
|
return GST_FLOW_ERROR;
|
||||||
|
}
|
||||||
wav->blockalign = header->blockalign;
|
wav->blockalign = header->blockalign;
|
||||||
wav->width = (header->blockalign * 8) / header->channels;
|
wav->width = (header->blockalign * 8) / header->channels;
|
||||||
wav->depth = header->size;
|
wav->depth = header->size;
|
||||||
wav->bps = header->av_bps;
|
wav->bps = header->av_bps;
|
||||||
|
if (wav->bps <= 0) {
|
||||||
|
GST_ELEMENT_ERROR (wav, STREAM, FAILED, (NULL),
|
||||||
|
("Stream claims to have a bitrate of <= zero - invalid data"));
|
||||||
|
g_free (header);
|
||||||
|
return GST_FLOW_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
g_free (header);
|
g_free (header);
|
||||||
|
|
||||||
|
@ -774,7 +788,9 @@ gst_wavparse_stream_headers (GstWavParse * wav)
|
||||||
gst_element_no_more_pads (GST_ELEMENT (wav));
|
gst_element_no_more_pads (GST_ELEMENT (wav));
|
||||||
GST_DEBUG ("frequency %d, channels %d", wav->rate, wav->channels);
|
GST_DEBUG ("frequency %d, channels %d", wav->rate, wav->channels);
|
||||||
} else {
|
} else {
|
||||||
GST_ELEMENT_ERROR (wav, STREAM, TYPE_NOT_FOUND, (NULL), (NULL));
|
GST_ELEMENT_ERROR (wav, STREAM, TYPE_NOT_FOUND, (NULL),
|
||||||
|
("No caps found for format 0x%x, %d channels, %d Hz",
|
||||||
|
wav->format, wav->channels, wav->rate));
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -843,6 +859,8 @@ gst_wavparse_stream_data (GstWavParse * wav)
|
||||||
GST_DEBUG ("offset : %lld , dataleft : %lld", wav->offset, wav->dataleft);
|
GST_DEBUG ("offset : %lld , dataleft : %lld", wav->offset, wav->dataleft);
|
||||||
|
|
||||||
desired = MIN (wav->dataleft, MAX_BUFFER_SIZE);
|
desired = MIN (wav->dataleft, MAX_BUFFER_SIZE);
|
||||||
|
if (desired >= wav->blockalign && wav->blockalign > 0)
|
||||||
|
desired -= (desired % wav->blockalign);
|
||||||
GST_DEBUG ("Fetching %lld bytes of data from the sinkpad.", desired);
|
GST_DEBUG ("Fetching %lld bytes of data from the sinkpad.", desired);
|
||||||
if ((res = gst_pad_pull_range (wav->sinkpad, wav->offset,
|
if ((res = gst_pad_pull_range (wav->sinkpad, wav->offset,
|
||||||
desired, &buf)) != GST_FLOW_OK) {
|
desired, &buf)) != GST_FLOW_OK) {
|
||||||
|
|
Loading…
Reference in a new issue