mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
mpegtsmux: fix aac caps in pad template for raw aac
Raw aac doesn't need framed=true. Fixes not-negotiated error with voaacenc ! mpegtsmux.
This commit is contained in:
parent
c683f2fffe
commit
be22d8fb4a
1 changed files with 3 additions and 1 deletions
|
@ -130,7 +130,9 @@ static GstStaticPadTemplate mpegtsmux_sink_factory =
|
|||
"mpegversion = (int) { 1, 2 };"
|
||||
"audio/mpeg, "
|
||||
"framed = (boolean) TRUE, "
|
||||
"mpegversion = (int) 4, stream-format = (string) { raw, adts };"
|
||||
"mpegversion = (int) 4, stream-format = (string) adts;"
|
||||
"audio/mpeg, "
|
||||
"mpegversion = (int) 4, stream-format = (string) raw;"
|
||||
"audio/x-lpcm, "
|
||||
"width = (int) { 16, 20, 24 }, "
|
||||
"rate = (int) { 48000, 96000 }, "
|
||||
|
|
Loading…
Reference in a new issue