mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
Fix warning on 64-bit architectures. (sizeof() returns size_t, which is not int)
Original commit message from CVS: Fix warning on 64-bit architectures. (sizeof() returns size_t, which is not int)
This commit is contained in:
parent
2655a3b98a
commit
7bea2b377a
1 changed files with 2 additions and 2 deletions
|
@ -848,8 +848,8 @@ gst_ladspa_chain (GstPad *pad, GstBuffer *buffer_in)
|
||||||
|
|
||||||
if (numsrcpads) {
|
if (numsrcpads) {
|
||||||
for (i=0; i<numsrcpads; i++) {
|
for (i=0; i<numsrcpads; i++) {
|
||||||
DEBUG_OBJ (ladspa, "pushing buffer (%p, length %d) on src pad %d",
|
DEBUG_OBJ (ladspa, "pushing buffer (%p, length %u bytes) on src pad %d",
|
||||||
buffers_out[i], GST_BUFFER_SIZE (buffers_out[i])/sizeof(float), i);
|
buffers_out[i], GST_BUFFER_SIZE (buffers_out[i]), i);
|
||||||
gst_pad_push (ladspa->srcpads[i], buffers_out[i]);
|
gst_pad_push (ladspa->srcpads[i], buffers_out[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue