Skip to content

Commit ac4aa59

Browse files
authored
Add missing ; (AOMediaCodec#3045)
1 parent 8fa8017 commit ac4aa59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/codec_avm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ static avifResult avmCodecEncodeImage(avifCodec * codec,
511511
uint8_t seqProfile = 0;
512512
#if defined(CONFIG_AV2_PROFILES) && CONFIG_AV2_PROFILES
513513
// Only 8-bit and 10-bit are supported.
514-
AVIF_ASSERT_OR_RETURN(image->depth == 8 || image->depth == 10)
514+
AVIF_ASSERT_OR_RETURN(image->depth == 8 || image->depth == 10);
515515

516516
// Based on https://gitlab.com/AOMediaCodec/avm/-/blob/main/av2/common/enums.h?ref_type=fcab0163f471b38fe593672fcbd24a6beb0be82e#L272
517517
if (alpha) {

0 commit comments

Comments
 (0)