diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-03-15 13:37:36 +0100 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-03-15 13:37:36 +0100 |
commit | 6cbb84038589d8b1086ef6c498c0402f13a83ce4 (patch) | |
tree | 6b3c0e0718273325d0a6aaeeecb6a91768d9af81 /gst/jpegformat | |
parent | 9f700cc3c4c9b4cc67ea0b44214e22d34cc0dcbb (diff) | |
download | gstreamer-plugins-bad-6cbb84038589d8b1086ef6c498c0402f13a83ce4.tar.gz |
update for memory api changes
Diffstat (limited to 'gst/jpegformat')
-rw-r--r-- | gst/jpegformat/gstjifmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/jpegformat/gstjifmux.c b/gst/jpegformat/gstjifmux.c index b9552b18a..82cd18a4e 100644 --- a/gst/jpegformat/gstjifmux.c +++ b/gst/jpegformat/gstjifmux.c @@ -670,7 +670,7 @@ gst_jif_mux_recombine_image (GstJifMux * self, GstBuffer ** new_buf, gst_buffer_get_size (old_buf), size); /* allocate new buffer */ - buf = gst_buffer_new_allocate (NULL, size, 0); + buf = gst_buffer_new_allocate (NULL, size, NULL); /* copy buffer metadata */ gst_buffer_copy_into (buf, old_buf, |