[gst-cvs] gst-plugins-good: [MOVED FROM BAD 55/57] flv: Set/require the framed/ parsed fields of the audio/mpeg caps to TRUE

Sebastian Dröge slomo at kemper.freedesktop.org
Tue May 12 12:58:01 PDT 2009


Module: gst-plugins-good
Branch: master
Commit: 189838532bb8c62310c38e6cee34dd0c4a8f2073
URL:    http://cgit.freedesktop.org/gstreamer/gst-plugins-good/commit/?id=189838532bb8c62310c38e6cee34dd0c4a8f2073

Author: Sebastian Dröge <sebastian.droege at collabora.co.uk>
Date:   Wed Apr 29 13:56:07 2009 +0200

[MOVED FROM BAD 55/57] flv: Set/require the framed/parsed fields of the audio/mpeg caps to TRUE

---

 gst/flv/gstflvmux.c   |    4 ++--
 gst/flv/gstflvparse.c |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gst/flv/gstflvmux.c b/gst/flv/gstflvmux.c
index b34a14a..d0b6411 100644
--- a/gst/flv/gstflvmux.c
+++ b/gst/flv/gstflvmux.c
@@ -62,8 +62,8 @@ static GstStaticPadTemplate audiosink_templ = GST_STATIC_PAD_TEMPLATE ("audio",
     GST_PAD_REQUEST,
     GST_STATIC_CAPS
     ("audio/x-adpcm, layout = (string) swf, channels = (int) { 1, 2 }, rate = (int) { 5512, 11025, 22050, 44100 }; "
-        "audio/mpeg, mpegversion = (int) 1, layer = (int) 3, channels = (int) { 1, 2 }, rate = (int) { 5512, 8000, 11025, 22050, 44100 }; "
-        "audio/mpeg, mpegversion = (int) 4; "
+        "audio/mpeg, mpegversion = (int) 1, layer = (int) 3, channels = (int) { 1, 2 }, rate = (int) { 5512, 8000, 11025, 22050, 44100 }, parsed = (boolean) TRUE; "
+        "audio/mpeg, mpegversion = (int) 4, framed = (boolean) TRUE; "
         "audio/x-nellymoser, channels = (int) { 1, 2 }, rate = (int) { 5512, 8000, 11025, 16000, 22050, 44100 }; "
         "audio/x-raw-int, endianness = (int) LITTLE_ENDIAN, channels = (int) { 1, 2 }, width = (int) 8, depth = (int) 8, rate = (int) { 5512, 11025, 22050, 44100 }, signed = (boolean) FALSE; "
         "audio/x-raw-int, endianness = (int) LITTLE_ENDIAN, channels = (int) { 1, 2 }, width = (int) 16, depth = (int) 16, rate = (int) { 5512, 11025, 22050, 44100 }, signed = (boolean) TRUE; "
diff --git a/gst/flv/gstflvparse.c b/gst/flv/gstflvparse.c
index b926668..5944651 100644
--- a/gst/flv/gstflvparse.c
+++ b/gst/flv/gstflvparse.c
@@ -478,7 +478,7 @@ gst_flv_parse_audio_negotiate (GstFLVDemux * demux, guint32 codec_tag,
       break;
     case 10:
       caps = gst_caps_new_simple ("audio/mpeg",
-          "mpegversion", G_TYPE_INT, 4, NULL);
+          "mpegversion", G_TYPE_INT, 4, "framed", G_TYPE_BOOLEAN, TRUE, NULL);
       codec_name = "AAC";
       break;
     case 7:





More information about the Gstreamer-commits mailing list