rtp: use new memory alloc API

This commit is contained in:
Wim Taymans 2011-06-07 16:18:40 +02:00
parent 28f67f4847
commit 2a94b0eb04

View file

@ -109,7 +109,7 @@ gst_rtp_buffer_allocate_data (GstBuffer * buffer, guint payload_len,
len = GST_RTP_HEADER_LEN + csrc_count * sizeof (guint32)
+ payload_len + pad_len;
mem = gst_memory_new_alloc (len, 0);
mem = gst_memory_allocator_alloc (NULL, len, 0);
data = gst_memory_map (mem, NULL, NULL, GST_MAP_WRITE);
/* fill in defaults */