mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gstrtppayloads: add vp8/vp9/opus encoding-name
Adding these encoding names allows easy lookup of the caps based on the encoding-name.
This commit is contained in:
parent
303f927d70
commit
a83859aaee
1 changed files with 3 additions and 0 deletions
|
@ -154,6 +154,7 @@ static const GstRTPPayloadInfo info[] = {
|
|||
{G_MAXUINT8, "audio", "ILBC", 8000, NULL, 0},
|
||||
{G_MAXUINT8, "audio", "MPEG4-GENERIC", 0, NULL, 0},
|
||||
{G_MAXUINT8, "audio", "SPEEX", 0, NULL, 0},
|
||||
{G_MAXUINT8, "audio", "OPUS", 48000, NULL, 0},
|
||||
|
||||
{G_MAXUINT8, "application", "MPEG4-GENERIC", 0, NULL, 0},
|
||||
|
||||
|
@ -164,6 +165,8 @@ static const GstRTPPayloadInfo info[] = {
|
|||
{G_MAXUINT8, "video", "VORBIS", 0, NULL, 0},
|
||||
{G_MAXUINT8, "video", "X-SV3V-ES", 90000, NULL, 0},
|
||||
{G_MAXUINT8, "video", "X-SORENSON-VIDEO", 90000, NULL, 0},
|
||||
{G_MAXUINT8, "video", "VP8", 90000, NULL, 0},
|
||||
{G_MAXUINT8, "video", "VP9", 90000, NULL, 0},
|
||||
|
||||
/* real stuff */
|
||||
{G_MAXUINT8, "video", "x-pn-realvideo", 1000, NULL, 0},
|
||||
|
|
Loading…
Reference in a new issue