mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
rtpmp4gdepay: Allow lower-case "aac-hbr" instead of correct "AAC-hbr"
Various live555 based products are using the wrong "mode" string or seem to assume case-insensitive matching, which is wrong. Examples for this are the Yuan SC6C0N1 mini and the Kiloview E2. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/727>
This commit is contained in:
parent
ee3ea2a94d
commit
c90af726ab
2 changed files with 2 additions and 2 deletions
|
@ -15369,7 +15369,7 @@
|
||||||
"long-name": "RTP MPEG4 ES depayloader",
|
"long-name": "RTP MPEG4 ES depayloader",
|
||||||
"pad-templates": {
|
"pad-templates": {
|
||||||
"sink": {
|
"sink": {
|
||||||
"caps": "application/x-rtp:\n media: { (string)video, (string)audio, (string)application }\n clock-rate: [ 1, 2147483647 ]\n encoding-name: MPEG4-GENERIC\n mode: { (string)generic, (string)CELP-cbr, (string)CELP-vbr, (string)AAC-lbr, (string)AAC-hbr }\n",
|
"caps": "application/x-rtp:\n media: { (string)video, (string)audio, (string)application }\n clock-rate: [ 1, 2147483647 ]\n encoding-name: MPEG4-GENERIC\n mode: { (string)generic, (string)CELP-cbr, (string)CELP-vbr, (string)AAC-lbr, (string)AAC-hbr, (string)aac-hbr }\n",
|
||||||
"direction": "sink",
|
"direction": "sink",
|
||||||
"presence": "always"
|
"presence": "always"
|
||||||
},
|
},
|
||||||
|
|
|
@ -53,7 +53,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
/* "streamtype = (string) { \"4\", \"5\" }, " Not set by Wowza 4 = video, 5 = audio */
|
/* "streamtype = (string) { \"4\", \"5\" }, " Not set by Wowza 4 = video, 5 = audio */
|
||||||
/* "profile-level-id = (string) [1,MAX], " */
|
/* "profile-level-id = (string) [1,MAX], " */
|
||||||
/* "config = (string) [1,MAX]" */
|
/* "config = (string) [1,MAX]" */
|
||||||
"mode = (string) { \"generic\", \"CELP-cbr\", \"CELP-vbr\", \"AAC-lbr\", \"AAC-hbr\" } "
|
"mode = (string) { \"generic\", \"CELP-cbr\", \"CELP-vbr\", \"AAC-lbr\", \"AAC-hbr\", \"aac-hbr\" } "
|
||||||
/* Optional general parameters */
|
/* Optional general parameters */
|
||||||
/* "objecttype = (string) [1,MAX], " */
|
/* "objecttype = (string) [1,MAX], " */
|
||||||
/* "constantsize = (string) [1,MAX], " *//* constant size of each AU */
|
/* "constantsize = (string) [1,MAX], " *//* constant size of each AU */
|
||||||
|
|
Loading…
Reference in a new issue