aiffparse: set missing layout field in srcpad caps
authorMatthieu Bouron <matthieu.bouron@collabora.com>
Wed, 7 Aug 2013 18:08:33 +0000 (19:08 +0100)
committerTim-Philipp Müller <tim@centricular.net>
Fri, 9 Aug 2013 22:41:30 +0000 (23:41 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=705674

gst/aiff/aiffparse.c

index 469bcec..0a997d8 100644 (file)
@@ -785,6 +785,7 @@ gst_aiff_parse_create_caps (GstAiffParse * aiff)
     caps = gst_caps_new_simple ("audio/x-raw",
         "format", G_TYPE_STRING, format,
         "channels", G_TYPE_INT, aiff->channels,
+        "layout", G_TYPE_STRING, "interleaved",
         "rate", G_TYPE_INT, aiff->rate, NULL);
   }