Fix compiler problems with gcc-2.96/RH-7.3

Original commit message from CVS:
Fix compiler problems with gcc-2.96/RH-7.3
This commit is contained in:
Ronald S. Bultje 2003-03-14 21:08:30 +00:00
parent f4eb8788d8
commit 99bc9dd63d

View file

@ -212,8 +212,8 @@ gst_alawenc_chain (GstPad *pad,GstBuffer *buf)
alaw_data = (guint8*)GST_BUFFER_DATA(outbuf);
for (i = 0; i < GST_BUFFER_SIZE(outbuf); i++) {
*alaw_data = s16_to_alaw (*linear_data);
*alaw_data++;
*linear_data++;
*alaw_data += 1;
*linear_data += 1;
}
gst_buffer_unref(buf);
gst_pad_push(alawenc->srcpad,outbuf);