projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76fb00c
)
[MOVED FROM GST-P-FARSIGHT] Make buffer writable before writing into it
author
Olivier Crete
<olivier.crete@collabora.co.uk>
Thu, 12 Jul 2007 19:53:36 +0000
(19:53 +0000)
committer
Edward Hervey
<bilboed@bilboed.com>
Sat, 21 Feb 2009 16:48:54 +0000
(17:48 +0100)
20070712195336
-3e2dc-
91a5fb797cfa4919d4e2f9a728c6d6fbd3b83d93
.gz
gst/rtpmux/gstrtpmux.c
patch
|
blob
|
history
diff --git
a/gst/rtpmux/gstrtpmux.c
b/gst/rtpmux/gstrtpmux.c
index 9ceedb6e6c840dccd6ee162f95a6f04a75063d67..79af6a451cf81b35ecedd993be52efca59088b63 100644
(file)
--- a/
gst/rtpmux/gstrtpmux.c
+++ b/
gst/rtpmux/gstrtpmux.c
@@
-364,7
+364,9
@@
gst_rtp_mux_chain (GstPad * pad, GstBuffer * buffer)
GstFlowReturn ret;
rtp_mux = GST_RTP_MUX (gst_pad_get_parent (pad));
-
+
+ buffer = gst_buffer_make_writable(buffer);
+
rtp_mux->seqnum++;
GST_LOG_OBJECT (rtp_mux, "setting RTP seqnum %d", rtp_mux->seqnum);
gst_rtp_buffer_set_seq (buffer, rtp_mux->seqnum);