summaryrefslogtreecommitdiff
path: root/gst/law/alaw-decode.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-03-15 13:36:17 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2012-03-15 13:36:17 +0100
commitecaea36c3d8d1b5efb831fca11a3dc140e343595 (patch)
treed73ca583b020b0ea5e8e1f546ceb570c97ddf776 /gst/law/alaw-decode.c
parentad0af26eed3f8f642785de29e3fb4b15eea25945 (diff)
downloadgstreamer-plugins-good-ecaea36c3d8d1b5efb831fca11a3dc140e343595.tar.gz
update for memory api changes
Diffstat (limited to 'gst/law/alaw-decode.c')
-rw-r--r--gst/law/alaw-decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/law/alaw-decode.c b/gst/law/alaw-decode.c
index c9a8de4ab..8de4cd240 100644
--- a/gst/law/alaw-decode.c
+++ b/gst/law/alaw-decode.c
@@ -328,7 +328,7 @@ gst_alaw_dec_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
linear_size = alaw_size * 2;
- outbuf = gst_buffer_new_allocate (NULL, linear_size, 0);
+ outbuf = gst_buffer_new_allocate (NULL, linear_size, NULL);
gst_buffer_map (outbuf, &outmap, GST_MAP_WRITE);
linear_data = (gint16 *) outmap.data;