From: Sebastian Dröge Date: Thu, 22 Mar 2007 16:25:56 +0000 (+0000) Subject: ext/wavpack/gstwavpackparse.c: Revert last commit, preventing infinite plugging loops... X-Git-Tag: 1.19.3~507^2~21128 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd18cbc2a3dba89e4f4fe5a34e781fbd3e5bad8f;p=platform%2Fupstream%2Fgstreamer.git ext/wavpack/gstwavpackparse.c: Revert last commit, preventing infinite plugging loops with ranks is no clean solution... Original commit message from CVS: * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init): Revert last commit, preventing infinite plugging loops with ranks is no clean solution and in general there's no reason why one wants to parse framed wavpack data again. --- diff --git a/ChangeLog b/ChangeLog index 27551c8..945338e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2007-03-22 Sebastian Dröge + * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init): + Revert last commit, preventing infinite plugging loops with ranks + is no clean solution and in general there's no reason why one wants + to parse framed wavpack data again. + +2007-03-22 Sebastian Dröge + * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_push_block): Send the new segment event in time format instead of bytes. This allows "wavpackenc ! wavpackdec ! someaudiosink" pipelines. diff --git a/ext/wavpack/gstwavpackparse.c b/ext/wavpack/gstwavpackparse.c index 7d72f06..c484a10 100644 --- a/ext/wavpack/gstwavpackparse.c +++ b/ext/wavpack/gstwavpackparse.c @@ -56,7 +56,9 @@ GST_DEBUG_CATEGORY_STATIC (gst_wavpack_parse_debug); static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, - GST_STATIC_CAPS ("audio/x-wavpack; " "audio/x-wavpack-correction") + GST_STATIC_CAPS ("audio/x-wavpack, " + "framed = (boolean) false; " + "audio/x-wavpack-correction, " "framed = (boolean) false") ); static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src", @@ -1171,7 +1173,7 @@ gboolean gst_wavpack_parse_plugin_init (GstPlugin * plugin) { if (!gst_element_register (plugin, "wavpackparse", - GST_RANK_PRIMARY - 1, GST_TYPE_WAVPACK_PARSE)) { + GST_RANK_PRIMARY, GST_TYPE_WAVPACK_PARSE)) { return FALSE; }