aiffparse: set missing layout field in srcpad caps

https://bugzilla.gnome.org/show_bug.cgi?id=705674
This commit is contained in:
Matthieu Bouron 2013-08-07 19:08:33 +01:00 committed by Tim-Philipp Müller
parent 5a066fd6dd
commit 8c4241e546

View 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);
}