From 7c29249ca5371142d5f45e4c924e4ec00c1f3076 Mon Sep 17 00:00:00 2001 From: Carlos Bentzen Date: Fri, 24 Jan 2025 11:37:10 +0100 Subject: [PATCH] h266parse: fix typos Part-of: --- .../gst-plugins-bad/gst/videoparsers/gsth266parse.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subprojects/gst-plugins-bad/gst/videoparsers/gsth266parse.c b/subprojects/gst-plugins-bad/gst/videoparsers/gsth266parse.c index 5f801b358d..46fc76e536 100644 --- a/subprojects/gst-plugins-bad/gst/videoparsers/gsth266parse.c +++ b/subprojects/gst-plugins-bad/gst/videoparsers/gsth266parse.c @@ -28,7 +28,7 @@ * conversion between the alignments and the stream-formats. * * The alignments can be: nal and au. - * The stream-formats can be: byte-streamm, vvc1 and vvi1. + * The stream-formats can be: byte-stream, vvc1 and vvi1. * * ## Example launch line: * ``` @@ -3075,7 +3075,7 @@ gst_h266_parse_set_caps (GstBaseParse * parse, GstCaps * caps) goto wrong_type; /* TODO: Need to refer to the new ISO/IEC 14496-15 to handle codec data. */ - goto vvc1_failed; + goto vvcc_failed; /* don't confuse codec_data with inband vps/sps/pps */ h266parse->have_vps_in_frame = FALSE; @@ -3132,10 +3132,10 @@ gst_h266_parse_set_caps (GstBaseParse * parse, GstCaps * caps) return TRUE; - /* TODO: ERRORS */ -vvc1_failed: + /* ERRORS */ +vvcc_failed: { - GST_DEBUG_OBJECT (h266parse, "Failed to parse vvc1 data"); + GST_DEBUG_OBJECT (h266parse, "Failed to parse vvcC data"); goto refuse_caps; } wrong_type: