summaryrefslogtreecommitdiffstats
path: root/gst/wavenc
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-08-21 12:56:01 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-08-21 12:56:01 +0000
commitcbccea33ec32a8f8341ff98ce08464c0e277ebb2 (patch)
tree254f69e89413838eef637b3d372f27b6a732ebbb /gst/wavenc
parent51cc9681987557b115c3e913112fa433705e65d1 (diff)
gst/wavenc/gstwavenc.c: If we're not allowing width!=depth in wavenc we should also disable the code that was added t...
Original commit message from CVS: * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): If we're not allowing width!=depth in wavenc we should also disable the code that was added to support width!=depth.
Diffstat (limited to 'gst/wavenc')
-rw-r--r--gst/wavenc/gstwavenc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gst/wavenc/gstwavenc.c b/gst/wavenc/gstwavenc.c
index 0d106dbd..23af8bcd 100644
--- a/gst/wavenc/gstwavenc.c
+++ b/gst/wavenc/gstwavenc.c
@@ -608,6 +608,7 @@ gst_wavenc_event (GstPad * pad, GstEvent * event)
return res;
}
+#if 0
/* Copied from gst-plugins-base/gst/audioconvert/audioconvert.c */
#define READ24_FROM_LE(p) (p[0] | (p[1] << 8) | (p[2] << 16))
#define WRITE24_TO_LE(p,v) p[0] = v & 0xff; p[1] = (v >> 8) & 0xff; p[2] = (v >> 16) & 0xff
@@ -653,6 +654,7 @@ gst_wavenc_format_samples (GstBuffer * buf, guint width, guint depth)
#undef READ24_FROM_LE
#undef WRITE24_TO_LE
+#endif
static GstFlowReturn
gst_wavenc_chain (GstPad * pad, GstBuffer * buf)
@@ -679,12 +681,16 @@ gst_wavenc_chain (GstPad * pad, GstBuffer * buf)
GST_LOG_OBJECT (wavenc, "pushing %u bytes raw audio, ts=%" GST_TIME_FORMAT,
GST_BUFFER_SIZE (buf), GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
+#if 0
if (wavenc->width != wavenc->depth) {
buf = gst_buffer_make_writable (buf);
gst_wavenc_format_samples (buf, wavenc->width, wavenc->depth);
} else {
+#endif
buf = gst_buffer_make_metadata_writable (buf);
+#if 0
}
+#endif
gst_buffer_set_caps (buf, GST_PAD_CAPS (wavenc->srcpad));
GST_BUFFER_OFFSET (buf) = WAV_HEADER_LEN + wavenc->length;