diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-03-30 14:10:15 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-03-30 14:13:29 +0100 |
commit | 6e5f789fa029f434213871415c3438d0ad6db500 (patch) | |
tree | c22c1d7bad27e39816e8d243772cd443c49da9c8 /gst/rtp/gstrtpmp4adepay.c | |
parent | 11a8aa91b847de9b04a00c3a116458d805314752 (diff) |
rtpmp4adepay: output should be framed already
Diffstat (limited to 'gst/rtp/gstrtpmp4adepay.c')
-rw-r--r-- | gst/rtp/gstrtpmp4adepay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/rtp/gstrtpmp4adepay.c b/gst/rtp/gstrtpmp4adepay.c index 15dfb0dca..de74709a9 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 }; |