mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
typefinding: fix ADTS caps stream-format detail
Field should be "stream-format", not "stream-type".
This commit is contained in:
parent
6c5cee1d02
commit
df6bd68b80
1 changed files with 1 additions and 1 deletions
|
@ -728,7 +728,7 @@ aac_type_find (GstTypeFind * tf, gpointer unused)
|
||||||
caps = gst_caps_new_simple ("audio/mpeg",
|
caps = gst_caps_new_simple ("audio/mpeg",
|
||||||
"framed", G_TYPE_BOOLEAN, FALSE,
|
"framed", G_TYPE_BOOLEAN, FALSE,
|
||||||
"mpegversion", G_TYPE_INT, mpegversion,
|
"mpegversion", G_TYPE_INT, mpegversion,
|
||||||
"stream-type", G_TYPE_STRING, "adts", NULL);
|
"stream-format", G_TYPE_STRING, "adts", NULL);
|
||||||
|
|
||||||
gst_codec_utils_aac_caps_set_level_and_profile (caps, audio_config, 2);
|
gst_codec_utils_aac_caps_set_level_and_profile (caps, audio_config, 2);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue