From ba36c8183bef6cacc7a2e8dc3367f2d53f5ca45b Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Thu, 6 Dec 2007 12:11:29 +0000 Subject: gst/audiofx/: The transform_ip() methods should do nothing if in passthrough mode. Original commit message from CVS: * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip): * gst/audiofx/audiochebyshevfreqband.c: (gst_audio_chebyshev_freq_band_transform_ip): * gst/audiofx/audiochebyshevfreqlimit.c: (gst_audio_chebyshev_freq_limit_transform_ip): * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip): * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip): The transform_ip() methods should do nothing if in passthrough mode. It might get non-writable buffers in that case but the buffer might as well be writable. * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform): The transform() methods won't be called in passthrough mode and otherwise the buffer is always writable so don't check here. --- gst/audiofx/audiocheblimit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/audiofx/audiocheblimit.c') diff --git a/gst/audiofx/audiocheblimit.c b/gst/audiofx/audiocheblimit.c index 0cd1ea6a..da403b7a 100644 --- a/gst/audiofx/audiocheblimit.c +++ b/gst/audiofx/audiocheblimit.c @@ -785,7 +785,7 @@ gst_audio_chebyshev_freq_limit_transform_ip (GstBaseTransform * base, guint num_samples = GST_BUFFER_SIZE (buf) / (GST_AUDIO_FILTER (filter)->format.width / 8); - if (!gst_buffer_is_writable (buf)) + if (gst_base_transform_is_passthrough (base)) return GST_FLOW_OK; if (GST_CLOCK_TIME_IS_VALID (GST_BUFFER_TIMESTAMP (buf))) -- cgit