From dd2ba0180ad3832d0f37c09287f0e0e4f11374b6 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 5 Dec 2005 13:04:22 +0000 Subject: Update for alloc_buffer changes. Original commit message from CVS: 2005-12-05 Andy Wingo * ext/faac/gstfaac.c: (gst_faac_sink_event), (gst_faac_chain): * ext/faad/gstfaad.c: (gst_faad_chain): * ext/hermes/gsthermescolorspace.c: (gst_hermes_colorspace_chain): * ext/lcs/gstcolorspace.c: (gst_colorspace_chain): * ext/xine/xineinput.c: (gst_xine_input_get): * gst/colorspace/gstcolorspace.c: (gst_colorspace_chain): * gst/speed/gstspeed.c: (speed_chain): * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain): Update for alloc_buffer changes. --- ext/faac/gstfaac.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ext/faac') diff --git a/ext/faac/gstfaac.c b/ext/faac/gstfaac.c index f89ad751..efae2462 100644 --- a/ext/faac/gstfaac.c +++ b/ext/faac/gstfaac.c @@ -434,9 +434,9 @@ gst_faac_sink_event (GstPad * pad, GstEvent * event) /* flush first */ ret = TRUE; do { - if (gst_pad_alloc_buffer (faac->srcpad, GST_BUFFER_OFFSET_NONE, - faac->bytes, GST_PAD_CAPS (faac->srcpad), - &outbuf) == GST_FLOW_OK) { + if (gst_pad_alloc_buffer_and_set_caps (faac->srcpad, + GST_BUFFER_OFFSET_NONE, faac->bytes, + GST_PAD_CAPS (faac->srcpad), &outbuf) == GST_FLOW_OK) { gint ret_size; if ((ret_size = faacEncEncode (faac->handle, NULL, 0, @@ -556,7 +556,8 @@ gst_faac_chain (GstPad * pad, GstBuffer * inbuf) (size - in_size) / size); } - result = gst_pad_alloc_buffer (faac->srcpad, GST_BUFFER_OFFSET_NONE, + result = + gst_pad_alloc_buffer_and_set_caps (faac->srcpad, GST_BUFFER_OFFSET_NONE, faac->bytes, GST_PAD_CAPS (faac->srcpad), &outbuf); if (result != GST_FLOW_OK) goto done; -- cgit v1.2.1