mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
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:
parent
f4eb8788d8
commit
99bc9dd63d
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue