From 76b4de79caad09264136d0a9667bb9bcc9ea7f75 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Tue, 11 Aug 2020 17:17:39 -0400 Subject: [PATCH] h264parse: Add new H.264 levels The spec now list 6, 6.1 and 6.2. Part-of: --- gst/videoparsers/gsth264parse.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gst/videoparsers/gsth264parse.c b/gst/videoparsers/gsth264parse.c index 05ad5c204a..a3167f32bd 100644 --- a/gst/videoparsers/gsth264parse.c +++ b/gst/videoparsers/gsth264parse.c @@ -1997,6 +1997,10 @@ get_level_string (GstH264SPS * sps) return "5.1"; case 52: return "5.2"; + case 61: + return "6.1"; + case 62: + return "6.2"; default: return NULL; }