summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2013-12-19 12:47:22 +0000
committerTim-Philipp Müller <tim@centricular.com>2013-12-19 12:47:22 +0000
commit627109ce4d9f1fb5a5d904dfd3dbb69d1e7aedfa (patch)
treef6e959854f8385fd036bdbdef0af3156bf622e1f /gst
parentc62229ae2dc017e461fab2aac8f68051677b3b5f (diff)
multiudpsink: fix misleading comment
Those are not allocated on the stack.
Diffstat (limited to 'gst')
-rw-r--r--gst/udp/gstmultiudpsink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/udp/gstmultiudpsink.c b/gst/udp/gstmultiudpsink.c
index f71594a5b..fc94c8f72 100644
--- a/gst/udp/gstmultiudpsink.c
+++ b/gst/udp/gstmultiudpsink.c
@@ -535,8 +535,8 @@ gst_multiudpsink_render (GstBaseSink * bsink, GstBuffer * buffer)
if (n_mem == 0)
goto no_data;
- /* allocated on the stack, the max number of memory blocks is limited so this
- * should not cause stack overflows */
+ /* pre-allocated, the max number of memory blocks is limited so this
+ * should not cause overflows */
vec = sink->vec;
map = sink->map;