Update for alloc_buffer changes.
authorAndy Wingo <wingo@pobox.com>
Mon, 5 Dec 2005 13:03:00 +0000 (13:03 +0000)
committerAndy Wingo <wingo@pobox.com>
Mon, 5 Dec 2005 13:03:00 +0000 (13:03 +0000)
Original commit message from CVS:
2005-12-05  Andy Wingo  <wingo@pobox.com>

* ext/dv/gstdvdec.c: (gst_dvdec_chain):
* ext/flac/gstflacdec.c: (gst_flacdec_write):
* ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
* ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
* ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
* ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
* ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
* ext/speex/gstspeexdec.c: (speex_dec_chain):
* ext/speex/gstspeexenc.c: (gst_speexenc_chain):
* gst/auparse/gstauparse.c: (gst_auparse_chain):
* gst/flx/gstflxdec.c: (gst_flxdec_chain):
* gst/goom/gstgoom.c: (gst_goom_chain):
* gst/matroska/matroska-demux.c:
(gst_matroska_demux_push_vorbis_codec_priv_data),
(gst_matroska_demux_add_wvpk_header):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
* gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
* gst/videomixer/videomixer.c: (gst_videomixer_collected):
* gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
alloc_buffer changes.

20 files changed:
ChangeLog
ext/dv/gstdvdec.c
ext/flac/gstflacdec.c
ext/flac/gstflacenc.c
ext/gdk_pixbuf/gstgdkpixbuf.c
ext/gdk_pixbuf/pixbufscale.c
ext/jpeg/gstjpegdec.c
ext/jpeg/gstjpegenc.c
ext/ladspa/gstsignalprocessor.c
ext/libpng/gstpngdec.c
ext/speex/gstspeexdec.c
ext/speex/gstspeexenc.c
gst/auparse/gstauparse.c
gst/flx/gstflxdec.c
gst/goom/gstgoom.c
gst/matroska/matroska-demux.c
gst/multipart/multipartdemux.c
gst/multipart/multipartmux.c
gst/videomixer/videomixer.c
gst/wavenc/gstwavenc.c

index 0b6c27abe95d5119f49f71417b1f053f3a0ef08c..ca46d5659c7d7aefc9e04d5068ca10af2d26f7ce 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2005-12-05  Andy Wingo  <wingo@pobox.com>
+
+       * ext/dv/gstdvdec.c: (gst_dvdec_chain):
+       * ext/flac/gstflacdec.c: (gst_flacdec_write):
+       * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
+       * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
+       * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
+       * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
+       * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
+       * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
+       * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
+       * ext/speex/gstspeexdec.c: (speex_dec_chain):
+       * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
+       * gst/auparse/gstauparse.c: (gst_auparse_chain):
+       * gst/flx/gstflxdec.c: (gst_flxdec_chain):
+       * gst/goom/gstgoom.c: (gst_goom_chain):
+       * gst/matroska/matroska-demux.c:
+       (gst_matroska_demux_push_vorbis_codec_priv_data),
+       (gst_matroska_demux_add_wvpk_header):
+       * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
+       * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
+       * gst/videomixer/videomixer.c: (gst_videomixer_collected):
+       * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
+       alloc_buffer changes.
+
 2005-12-05  Michael Smith  <msmith@fluendo.com>
 
        * docs/plugins/gst-plugins-good-plugins.args:
index 32b75aff12fb1c7be685c93eb969121f498eeb4a..fb355d0e10ff88b13fb642a7f835b7bd9754c5b2 100644 (file)
@@ -273,7 +273,7 @@ gst_dvdec_chain (GstPad * pad, GstBuffer * buf)
     goto skip;
 
   ret =
-      gst_pad_alloc_buffer (dvdec->srcpad, 0,
+      gst_pad_alloc_buffer_and_set_caps (dvdec->srcpad, 0,
       (720 * dvdec->height) * dvdec->bpp,
       GST_PAD_CAPS (dvdec->srcpad), &outbuf);
   if (ret != GST_FLOW_OK)
index 5f534253c47220769736e3d42f318e5bba3de762..dc8ed7b2f547a18fe623e422c4dd79767f03f25c 100644 (file)
@@ -488,9 +488,10 @@ gst_flacdec_write (const FLAC__SeekableStreamDecoder * decoder,
     flacdec->frequency = frame->header.sample_rate;
   }
 
-  ret = gst_pad_alloc_buffer (flacdec->srcpad, flacdec->total_samples,
-      samples * channels * ((width + 7) >> 3), GST_PAD_CAPS (flacdec->srcpad),
-      &outbuf);
+  ret =
+      gst_pad_alloc_buffer_and_set_caps (flacdec->srcpad,
+      flacdec->total_samples, samples * channels * ((width + 7) >> 3),
+      GST_PAD_CAPS (flacdec->srcpad), &outbuf);
   if (ret != GST_FLOW_NOT_LINKED && ret != GST_FLOW_OK) {
     GST_DEBUG ("stopping flac decoder engine (%d)", (gint) ret);
     return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
index c90e11923af5d11dec64d0b1149dcb7d9db580b4..75c8379617543bc25114b5d00f4c6e8ce7510849 100644 (file)
@@ -538,8 +538,8 @@ gst_flacenc_write_callback (const FLAC__SeekableStreamEncoder * encoder,
   if (flacenc->stopped)
     return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
 
-  if (gst_pad_alloc_buffer (flacenc->srcpad, flacenc->offset, bytes,
-          GST_PAD_CAPS (flacenc->srcpad), &outbuf) != GST_FLOW_OK) {
+  if (gst_pad_alloc_buffer_and_set_caps (flacenc->srcpad, flacenc->offset,
+          bytes, GST_PAD_CAPS (flacenc->srcpad), &outbuf) != GST_FLOW_OK) {
     return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
   }
 
index 9a602ea884e2776535601f1ee4dbf4efbd07da6d..34a1678e8b5d0c2d744d96395eda8b382bd15efb 100644 (file)
@@ -329,8 +329,9 @@ gst_gdk_pixbuf_chain (GstPad * pad, GstData * _data)
         gst_pad_set_explicit_caps (filter->srcpad, caps);
       }
 
-      outbuf = gst_pad_alloc_buffer (filter->srcpad, GST_BUFFER_OFFSET_NONE,
-          filter->image_size);
+      outbuf =
+          gst_pad_alloc_buffer_and_set_caps (filter->srcpad,
+          GST_BUFFER_OFFSET_NONE, filter->image_size);
       GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
       GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (buf);
 
index 9edef4007e81a5b49546975f854870f81ad54536..6b52b426af9a17f41266c82ffddc008d28c48d61 100644 (file)
@@ -409,7 +409,7 @@ gst_pixbufscale_chain (GstPad * pad, GstData * _data)
     return;
   }
 
-  outbuf = gst_pad_alloc_buffer (pixbufscale->srcpad,
+  outbuf = gst_pad_alloc_buffer_and_set_caps (pixbufscale->srcpad,
       GST_BUFFER_OFFSET_NONE, pixbufscale->to_buf_size);
 
   gst_buffer_stamp (outbuf, buf);
index 8b26c3d36e4766ff4ad54b7a4948933cab138209..0ad04c42f020005350d62d769f0e6d3f8363a18e 100644 (file)
@@ -815,7 +815,7 @@ gst_jpeg_dec_chain (GstPad * pad, GstBuffer * buf)
     dec->caps_framerate_denominator = dec->framerate_denominator;
   }
 
-  ret = gst_pad_alloc_buffer (dec->srcpad, GST_BUFFER_OFFSET_NONE,
+  ret = gst_pad_alloc_buffer_and_set_caps (dec->srcpad, GST_BUFFER_OFFSET_NONE,
       I420_SIZE (width, height), GST_PAD_CAPS (dec->srcpad), &outbuf);
   if (ret != GST_FLOW_OK)
     goto alloc_failed;
index 490121e9bfe4d44885224494ef4862bb5005119d..2485d2f63a9d9a94b7aaa31631d8b9c336fbc723 100644 (file)
@@ -411,8 +411,10 @@ gst_jpegenc_chain (GstPad * pad, GstBuffer * buf)
 
   GST_DEBUG_OBJECT (jpegenc, "got buffer of %u bytes", size);
 
-  ret = gst_pad_alloc_buffer (jpegenc->srcpad, GST_BUFFER_OFFSET_NONE,
-      jpegenc->bufsize, GST_PAD_CAPS (jpegenc->srcpad), &outbuf);
+  ret =
+      gst_pad_alloc_buffer_and_set_caps (jpegenc->srcpad,
+      GST_BUFFER_OFFSET_NONE, jpegenc->bufsize, GST_PAD_CAPS (jpegenc->srcpad),
+      &outbuf);
 
   if (ret != GST_FLOW_OK)
     goto done;
index 9caf7b7babe6a0b44845a7c6e8f1693be790313e..375ea83950a4bea7d63aac52a5016ef6324e24ba 100644 (file)
@@ -325,8 +325,9 @@ gst_signal_processor_process (GstSignalProcessor * self)
 
         srcpad = (GstSignalProcessorPad *) l2->data;
 
-        ret = gst_pad_alloc_buffer (GST_PAD (srcpad), -1, self->buffer_frames,
-            GST_PAD_CAPS (srcpad), &srcpad->pen);
+        ret =
+            gst_pad_alloc_buffer_and_set_caps (GST_PAD (srcpad), -1,
+            self->buffer_frames, GST_PAD_CAPS (srcpad), &srcpad->pen);
 
         if (ret != GST_FLOW_OK) {
           self->state = ret;
index 67a19e7ec14836309f0985643b28b6c834560ce9..874114a26a14d9c36cad0325c23090a33f2b6223 100644 (file)
@@ -192,7 +192,8 @@ user_info_callback (png_structp png_ptr, png_infop info)
   /* Allocate output buffer */
   pngdec->rowbytes = png_get_rowbytes (pngdec->png, pngdec->info);
   buffer_size = pngdec->height * GST_ROUND_UP_4 (pngdec->rowbytes);
-  ret = gst_pad_alloc_buffer (pngdec->srcpad, GST_BUFFER_OFFSET_NONE,
+  ret =
+      gst_pad_alloc_buffer_and_set_caps (pngdec->srcpad, GST_BUFFER_OFFSET_NONE,
       buffer_size, GST_PAD_CAPS (pngdec->srcpad), &buffer);
   if (ret != GST_FLOW_OK) {
     goto beach;
@@ -397,7 +398,8 @@ gst_pngdec_task (GstPad * pad)
   /* Allocate output buffer */
   rowbytes = png_get_rowbytes (pngdec->png, pngdec->info);
   buffer_size = pngdec->height * GST_ROUND_UP_4 (rowbytes);
-  ret = gst_pad_alloc_buffer (pngdec->srcpad, GST_BUFFER_OFFSET_NONE,
+  ret =
+      gst_pad_alloc_buffer_and_set_caps (pngdec->srcpad, GST_BUFFER_OFFSET_NONE,
       buffer_size, GST_PAD_CAPS (pngdec->srcpad), &buffer);
   if (ret != GST_FLOW_OK) {
     goto pause;
index 6cd8374d6cd838ce48ad24e7a56b94dcabf46afe..5f68a32bbb7ed57da0274df624eae1726cc38c6e 100644 (file)
@@ -478,7 +478,9 @@ speex_dec_chain (GstPad * pad, GstBuffer * buf)
       if (dec->header->nb_channels == 2)
         speex_decode_stereo (dec->output, dec->frame_size, &dec->stereo);
 
-      if ((res = gst_pad_alloc_buffer (dec->srcpad, GST_BUFFER_OFFSET_NONE,
+      if ((res =
+              gst_pad_alloc_buffer_and_set_caps (dec->srcpad,
+                  GST_BUFFER_OFFSET_NONE,
                   dec->frame_size * dec->header->nb_channels * 2,
                   GST_PAD_CAPS (dec->srcpad), &outbuf)) != GST_FLOW_OK)
         return res;
index 9b6022371ee77dc2626a10f0681b1cbcc7a4065d..777b75ba1e0c317c6df9dd00bd6ff0434b941a6a 100644 (file)
@@ -996,7 +996,7 @@ gst_speexenc_chain (GstPad * pad, GstBuffer * buf)
       speex_bits_insert_terminator (&speexenc->bits);
       outsize = speex_bits_nbytes (&speexenc->bits);
 
-      ret = gst_pad_alloc_buffer (speexenc->srcpad,
+      ret = gst_pad_alloc_buffer_and_set_caps (speexenc->srcpad,
           GST_BUFFER_OFFSET_NONE, outsize, GST_PAD_CAPS (speexenc->srcpad),
           &outbuf);
 
index 1b5cf540e3c563daae833c4d7d41231c1c9f0480..d39c239b693e9fd8b7637d084d885d37b8e25477 100644 (file)
@@ -388,8 +388,9 @@ Samples :
       const guint8 *data = gst_adapter_peek (auparse->adapter, avail);
       GstBuffer *newbuf;
 
-      if ((ret = gst_pad_alloc_buffer (auparse->srcpad, auparse->buffer_offset,
-                  avail, GST_PAD_CAPS (auparse->srcpad),
+      if ((ret =
+              gst_pad_alloc_buffer_and_set_caps (auparse->srcpad,
+                  auparse->buffer_offset, avail, GST_PAD_CAPS (auparse->srcpad),
                   &newbuf)) == GST_FLOW_OK) {
 
         memcpy (GST_BUFFER_DATA (newbuf), data, avail);
index 93c10fd04b8311af64192f7dea439f1cc668a458..3c0cc069390f506b59a9498c0ba5e40e1a92b6dd 100644 (file)
@@ -554,7 +554,7 @@ gst_flxdec_chain (GstPad * pad, GstBuffer * buf)
             break;
 
           /* create 32 bits output frame */
-          res = gst_pad_alloc_buffer (flxdec->srcpad,
+          res = gst_pad_alloc_buffer_and_set_caps (flxdec->srcpad,
               GST_BUFFER_OFFSET_NONE,
               flxdec->size * 4, GST_PAD_CAPS (flxdec->srcpad), &out);
 
index e5a6618db0f8ab123d27032a61fa38ae14f960f1..5e7bd8c562d3f7f98a0ab15d7188ab656756cad9 100644 (file)
@@ -370,7 +370,8 @@ gst_goom_chain (GstPad * pad, GstBuffer * bufin)
       }
     }
 
-    ret = gst_pad_alloc_buffer (goom->srcpad, GST_BUFFER_OFFSET_NONE,
+    ret =
+        gst_pad_alloc_buffer_and_set_caps (goom->srcpad, GST_BUFFER_OFFSET_NONE,
         goom->width * goom->height * 4, GST_PAD_CAPS (goom->srcpad), &bufout);
     if (ret != GST_FLOW_OK)
       break;
index d7f46d47c34b0ba96ba3e8f8d89c27f342387f5b..188bab19a63420c2e08232810531e8febc720547 100644 (file)
@@ -2005,7 +2005,7 @@ gst_matroska_demux_push_vorbis_codec_priv_data (GstMatroskaDemux * demux,
 
   for (i = 0; i < 2; i++) {
     length = p[i + 1];
-    if (gst_pad_alloc_buffer (stream->pad, GST_BUFFER_OFFSET_NONE,
+    if (gst_pad_alloc_buffer_and_set_caps (stream->pad, GST_BUFFER_OFFSET_NONE,
             length, stream->caps, &priv) == GST_FLOW_OK) {
       memcpy (GST_BUFFER_DATA (priv), &p[offset], length);
 
@@ -2016,8 +2016,8 @@ gst_matroska_demux_push_vorbis_codec_priv_data (GstMatroskaDemux * demux,
     offset += length;
   }
   length = stream->codec_priv_size - offset;
-  if (gst_pad_alloc_buffer (stream->pad, GST_BUFFER_OFFSET_NONE, length,
-          stream->caps, &priv) == GST_FLOW_OK) {
+  if (gst_pad_alloc_buffer_and_set_caps (stream->pad, GST_BUFFER_OFFSET_NONE,
+          length, stream->caps, &priv) == GST_FLOW_OK) {
     memcpy (GST_BUFFER_DATA (priv), &p[offset], length);
     ret = gst_pad_push (stream->pad, priv);
     if (ret != GST_FLOW_OK && ret != GST_FLOW_NOT_LINKED)
@@ -2063,8 +2063,8 @@ gst_matroska_demux_add_wvpk_header (GstMatroskaTrackContext * stream,
 
   /* block_samples, flags and crc are already in the buffer */
   newlen = block_length + sizeof (Wavpack4Header) - 12;
-  if (gst_pad_alloc_buffer (stream->pad, GST_BUFFER_OFFSET_NONE, newlen,
-          stream->caps, &newbuf) != GST_FLOW_OK) {
+  if (gst_pad_alloc_buffer_and_set_caps (stream->pad, GST_BUFFER_OFFSET_NONE,
+          newlen, stream->caps, &newbuf) != GST_FLOW_OK) {
     return TRUE;                /* not an error, pad might not be linked */
   }
 
index 0138f2636506d4e44531b0ecfafd2f47ecc4ad1d..89e7954f08d0f6e448d8316516b09a2dd3f90268 100644 (file)
@@ -285,8 +285,10 @@ gst_multipart_demux_chain (GstPad * pad, GstBuffer * buf)
               gst_multipart_find_pad_by_mime (multipart,
               multipart->parsing_mime, &created);
           if (srcpad != NULL) {
-            ret = gst_pad_alloc_buffer (srcpad->pad, GST_BUFFER_OFFSET_NONE,
-                datalen, GST_PAD_CAPS (srcpad->pad), &outbuf);
+            ret =
+                gst_pad_alloc_buffer_and_set_caps (srcpad->pad,
+                GST_BUFFER_OFFSET_NONE, datalen, GST_PAD_CAPS (srcpad->pad),
+                &outbuf);
             if (ret != GST_FLOW_OK) {
               GST_WARNING_OBJECT (multipart, "failed allocating a %d bytes "
                   "buffer", datalen);
index 1c588b69b998494d56804b83a509127dbd817f73..44e5d0bd2d4c960f29e10aa7e002ccce671758fe 100644 (file)
@@ -461,8 +461,9 @@ gst_multipart_mux_collected (GstCollectPads * pads, GstMultipartMux * mux)
   headerlen = strlen (header);
   newlen = headerlen + GST_BUFFER_SIZE (best->buffer);
 
-  ret = gst_pad_alloc_buffer (mux->srcpad, GST_BUFFER_OFFSET_NONE, newlen,
-      GST_PAD_CAPS (mux->srcpad), &newbuf);
+  ret =
+      gst_pad_alloc_buffer_and_set_caps (mux->srcpad, GST_BUFFER_OFFSET_NONE,
+      newlen, GST_PAD_CAPS (mux->srcpad), &newbuf);
   if (ret != GST_FLOW_OK) {
     GST_WARNING_OBJECT (mux, "failed allocating a %d bytes buffer", newlen);
     g_free (header);
index a71ddcdec2895cb0a4fc91c45d690f376e4fa653..f0f2377c10e948c3c39684751d3b8023b5232bfb 100644 (file)
@@ -1044,7 +1044,7 @@ gst_videomixer_loop (GstElement * element)
 
   outsize = ROUND_UP_2 (mix->out_width) * ROUND_UP_2 (mix->out_height) * 4;
 
-  outbuf = gst_pad_alloc_buffer (mix->srcpad, GST_BUFFER_OFFSET_NONE, outsize);
+  outbuf = gst_pad_alloc_buffer_and_set_caps (mix->srcpad, GST_BUFFER_OFFSET_NONE, outsize);
   switch (mix->background) {
     case VIDEO_MIXER_BACKGROUND_CHECKER:
       gst_videomixer_fill_checker (GST_BUFFER_DATA (outbuf),
@@ -1106,12 +1106,14 @@ gst_videomixer_collected (GstCollectPads * pads, GstVideoMixer * mix)
     mix->out_width = mix->in_width;
     mix->out_height = mix->in_height;
 
-    ret = gst_pad_alloc_buffer (mix->srcpad, GST_BUFFER_OFFSET_NONE, outsize,
-        newcaps, &outbuf);
+    ret =
+        gst_pad_alloc_buffer_and_set_caps (mix->srcpad, GST_BUFFER_OFFSET_NONE,
+        outsize, newcaps, &outbuf);
     gst_caps_unref (newcaps);
   } else {                      /* Otherwise we just allocate a buffer from current caps */
-    ret = gst_pad_alloc_buffer (mix->srcpad, GST_BUFFER_OFFSET_NONE, outsize,
-        GST_PAD_CAPS (mix->srcpad), &outbuf);
+    ret =
+        gst_pad_alloc_buffer_and_set_caps (mix->srcpad, GST_BUFFER_OFFSET_NONE,
+        outsize, GST_PAD_CAPS (mix->srcpad), &outbuf);
   }
 
   if (ret != GST_FLOW_OK) {
index 29cc1f02c97481bccb4c3c2a666b4c8e6aa88901..da6b8b7dfbba1d160beb7f2abf6ecd50c10d14d2 100644 (file)
@@ -665,8 +665,10 @@ gst_wavenc_chain (GstPad * pad, GstBuffer * buf)
   if (wavenc->flush_header) {
     GstBuffer *outbuf;
 
-    result = gst_pad_alloc_buffer (wavenc->srcpad, GST_BUFFER_OFFSET_NONE,
-        WAV_HEADER_LEN, GST_PAD_CAPS (wavenc->srcpad), &outbuf);
+    result =
+        gst_pad_alloc_buffer_and_set_caps (wavenc->srcpad,
+        GST_BUFFER_OFFSET_NONE, WAV_HEADER_LEN, GST_PAD_CAPS (wavenc->srcpad),
+        &outbuf);
     if (result != GST_FLOW_OK) {
       GST_WARNING_OBJECT (wavenc, "failed when allocating a %d bytes buffer "
           "for headers", WAV_HEADER_LEN);