mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
matroskademux: add stream-format=raw to aac caps
https://bugzilla.gnome.org/show_bug.cgi?id=699303
This commit is contained in:
parent
eebe5fc70d
commit
0584d5c4c9
1 changed files with 2 additions and 1 deletions
|
@ -5423,7 +5423,8 @@ gst_matroska_demux_audio_caps (GstMatroskaTrackAudioContext *
|
|||
if (priv) {
|
||||
caps = gst_caps_new_simple ("audio/mpeg",
|
||||
"mpegversion", G_TYPE_INT, mpegversion,
|
||||
"framed", G_TYPE_BOOLEAN, TRUE, NULL);
|
||||
"framed", G_TYPE_BOOLEAN, TRUE,
|
||||
"stream-format", G_TYPE_STRING, "raw", NULL);
|
||||
gst_caps_set_simple (caps, "codec_data", GST_TYPE_BUFFER, priv, NULL);
|
||||
*codec_name = g_strdup_printf ("MPEG-%d AAC audio", mpegversion);
|
||||
gst_buffer_unref (priv);
|
||||
|
|
Loading…
Reference in a new issue