mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
mpegvideoparse: change profile and level strings to something nicer-looking
This is more in line with what we do elsewhere, even if it doesn't resemble the offical abbreviations exactly. See #616078.
This commit is contained in:
parent
413716d1d9
commit
cbd74ceff4
1 changed files with 4 additions and 4 deletions
|
@ -255,12 +255,12 @@ mpegvideoparse_handle_sequence (MpegVideoParse * mpegvideoparse,
|
|||
* 3 => SNR Scalable, 4 => Main, 5 => Simple
|
||||
* 4:2:2 and Multi-view have profile = 0, with the escape bit set to 1
|
||||
*/
|
||||
const gchar *profiles[] = { "HP", "Spatial", "SNR", "MP", "SP" };
|
||||
const gchar *profiles[] = { "high", "spatial", "snr", "main", "simple" };
|
||||
/*
|
||||
* Level indication - 4 => High, 6 => High-1440, 8 => Main, 10 => Low,
|
||||
* except in the case of profile = 0
|
||||
*/
|
||||
const gchar *levels[] = { "HL", "H-14", "ML", "LL" };
|
||||
const gchar *levels[] = { "high", "high-1440", "main", "low" };
|
||||
|
||||
/* Store the entire sequence header + sequence header extension
|
||||
for output as codec_data */
|
||||
|
@ -296,7 +296,7 @@ mpegvideoparse_handle_sequence (MpegVideoParse * mpegvideoparse,
|
|||
level = levels[0];
|
||||
case 5:
|
||||
level = levels[2];
|
||||
profile = "422P";
|
||||
profile = "4:2:2";
|
||||
break;
|
||||
case 10:
|
||||
level = levels[0];
|
||||
|
@ -306,7 +306,7 @@ mpegvideoparse_handle_sequence (MpegVideoParse * mpegvideoparse,
|
|||
level = levels[2];
|
||||
case 14:
|
||||
level = levels[3];
|
||||
profile = "MVP";
|
||||
profile = "multiview";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue