diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2007-05-02 18:31:16 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2007-05-02 18:31:16 +0000 |
commit | 2450ca4d3adc4e15edb8f8cfc5c211a35f76a6a2 (patch) | |
tree | efe31bd17260a530718825cf2abd9a3f20c3cd76 /ext/wavpack/gstwavpackdec.c | |
parent | 842e4f6220619c88e2bd33baa2fd8b1e70d88228 (diff) | |
download | gst-plugins-bad-2450ca4d3adc4e15edb8f8cfc5c211a35f76a6a2.tar.gz gst-plugins-bad-2450ca4d3adc4e15edb8f8cfc5c211a35f76a6a2.tar.bz2 gst-plugins-bad-2450ca4d3adc4e15edb8f8cfc5c211a35f76a6a2.zip |
ext/wavpack/gstwavpack.c: Call bindtextdomain() to get localized strings.
Original commit message from CVS:
* ext/wavpack/gstwavpack.c: (plugin_init):
Call bindtextdomain() to get localized strings.
* ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
* ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
(gst_wavpack_parse_handle_seek_event),
(gst_wavpack_parse_push_buffer), (gst_wavpack_parse_chain):
* ext/wavpack/gstwavpackparse.h:
Handle DISCONT buffers by correctly setting the DISCONT flag
on outgoing buffers when necessary.
* ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_handle_seek_event)
Send newsegment from the streaming thread.
Diffstat (limited to 'ext/wavpack/gstwavpackdec.c')
-rw-r--r-- | ext/wavpack/gstwavpackdec.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/wavpack/gstwavpackdec.c b/ext/wavpack/gstwavpackdec.c index 8e46e61f..5adaf1be 100644 --- a/ext/wavpack/gstwavpackdec.c +++ b/ext/wavpack/gstwavpackdec.c @@ -359,6 +359,11 @@ gst_wavpack_dec_chain (GstPad * pad, GstBuffer * buf) goto out; gst_buffer_stamp (outbuf, buf); + /* If we got a DISCONT buffer forward the flag. Nothing else + * has to be done as libwavpack doesn't store state between + * Wavpack blocks */ + if (GST_BUFFER_IS_DISCONT (buf)) + GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT); /* decode */ decoded = WavpackUnpackSamples (dec->context, |