summaryrefslogtreecommitdiffstats
path: root/gst/rtp
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-03-30 14:10:15 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-03-30 14:13:29 +0100
commit6e5f789fa029f434213871415c3438d0ad6db500 (patch)
treec22c1d7bad27e39816e8d243772cd443c49da9c8 /gst/rtp
parent11a8aa91b847de9b04a00c3a116458d805314752 (diff)
rtpmp4adepay: output should be framed already
Diffstat (limited to 'gst/rtp')
-rw-r--r--gst/rtp/gstrtpmp4adepay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/rtp/gstrtpmp4adepay.c b/gst/rtp/gstrtpmp4adepay.c
index 15dfb0dc..de74709a 100644
--- a/gst/rtp/gstrtpmp4adepay.c
+++ b/gst/rtp/gstrtpmp4adepay.c
@@ -42,7 +42,7 @@ GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/mpeg,"
- "mpegversion = (int) 4," "framed = (boolean) false")
+ "mpegversion = (int) 4," "framed = (boolean) true")
);
static GstStaticPadTemplate gst_rtp_mp4a_depay_sink_template =
@@ -156,7 +156,7 @@ gst_rtp_mp4a_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
srccaps = gst_caps_new_simple ("audio/mpeg",
"mpegversion", G_TYPE_INT, 4,
- "framed", G_TYPE_BOOLEAN, FALSE, "channels", G_TYPE_INT, channels, NULL);
+ "framed", G_TYPE_BOOLEAN, TRUE, "channels", G_TYPE_INT, channels, NULL);
if ((str = gst_structure_get_string (structure, "config"))) {
GValue v = { 0 };