diff --git a/subprojects/gst-editing-services/tests/check/ges/timelineedition.c b/subprojects/gst-editing-services/tests/check/ges/timelineedition.c index 2d4e5dd73b..4af7f3d625 100644 --- a/subprojects/gst-editing-services/tests/check/ges/timelineedition.c +++ b/subprojects/gst-editing-services/tests/check/ges/timelineedition.c @@ -344,7 +344,7 @@ GST_START_TEST (test_snapping) DEEP_CHECK (clip1, 20, 0, 10); DEEP_CHECK (clip2, 62, 0, 60); - /* clip and clip1 would fully overlap ... forbiden */ + /* clip and clip1 would fully overlap ... forbidden */ fail_if (ges_timeline_element_roll_end (GES_TIMELINE_ELEMENT (clip1), 62)); DEEP_CHECK (clip, 25, 0, 37); DEEP_CHECK (clip1, 20, 0, 10); diff --git a/subprojects/gst-plugins-base/gst/typefind/gsttypefindfunctions.c b/subprojects/gst-plugins-base/gst/typefind/gsttypefindfunctions.c index f7f7f75bb7..0574b756b4 100644 --- a/subprojects/gst-plugins-base/gst/typefind/gsttypefindfunctions.c +++ b/subprojects/gst-plugins-base/gst/typefind/gsttypefindfunctions.c @@ -2858,7 +2858,7 @@ h264_video_type_find (GstTypeFind * tf, gpointer unused) break; if (IS_MPEG_HEADER (c.data)) { - nut = c.data[3] & 0x9f; /* forbiden_zero_bit | nal_unit_type */ + nut = c.data[3] & 0x9f; /* forbidden_zero_bit | nal_unit_type */ ref = c.data[3] & 0x60; /* nal_ref_idc */ /* if forbidden bit is different to 0 won't be h264 */ @@ -2960,7 +2960,7 @@ h265_video_type_find (GstTypeFind * tf, gpointer unused) break; if (IS_MPEG_HEADER (c.data)) { - /* forbiden_zero_bit | nal_unit_type */ + /* forbidden_zero_bit | nal_unit_type */ nut = c.data[3] & 0xfe; /* if forbidden bit is different to 0 won't be h265 */