summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpgsmdepay.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-11-06 22:00:41 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-11-06 22:00:41 +0000
commit39940da795f45a3518b1a279dabb1d16712353c7 (patch)
tree2a3c3c4251f29a0ca4b95353b513cc987c50e0f6 /gst/rtp/gstrtpgsmdepay.c
parent5cbc931fca3f64e2152b09926de8b193b7fbafcc (diff)
gst/rtp/gstrtpgsmparse.c: Add missing NULL terminator (#157543).
Original commit message from CVS: Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego): Add missing NULL terminator (#157543).
Diffstat (limited to 'gst/rtp/gstrtpgsmdepay.c')
-rw-r--r--gst/rtp/gstrtpgsmdepay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtp/gstrtpgsmdepay.c b/gst/rtp/gstrtpgsmdepay.c
index e6ea8406..19b35ebb 100644
--- a/gst/rtp/gstrtpgsmdepay.c
+++ b/gst/rtp/gstrtpgsmdepay.c
@@ -165,7 +165,7 @@ gst_rtpgsm_caps_nego (GstRtpGSMParse * rtpgsmparse)
GstCaps *caps;
caps = gst_caps_new_simple ("audio/x-gsm",
- "rate", G_TYPE_INT, rtpgsmparse->frequency);
+ "rate", G_TYPE_INT, rtpgsmparse->frequency, NULL);
gst_pad_try_set_caps (rtpgsmparse->srcpad, caps);
}