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:
Marc Leeman 2019-06-12 12:32:33 +00:00 committed by Sebastian Dröge
parent 303f927d70
commit a83859aaee

View file

@ -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},