Skip to content

Commit

Permalink
Remove dot after specification section numbers
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
y-guyon committed Aug 11, 2023
1 parent 883e9c9 commit 9d81bcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/avif.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void avifGetPixelFormatInfo(avifPixelFormat format, avifPixelFormatInfo * info)
case AVIF_PIXEL_FORMAT_YUV400:
info->monochrome = AVIF_TRUE;
// The nonexistent chroma is considered as subsampled in each dimension
// according to the AV1 specification. See sections 5.5.2. and 6.4.2.
// according to the AV1 specification. See sections 5.5.2 and 6.4.2.
info->chromaShiftX = 1;
info->chromaShiftY = 1;
break;
Expand Down
2 changes: 1 addition & 1 deletion tests/gtest/avifallocationtest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ TEST(EncodingTest, ReasonableValidDimensions) {
}

// 65536 is the maximum AV1 frame dimension allowed by the AV1 specification.
// See the section 5.5.1. General sequence header OBU syntax.
// See the section 5.5.1 General sequence header OBU syntax.
// However, this test is disabled because:
// - Old versions of libaom are capped to 65535 (http://crbug.com/aomedia/3304).
// - libaom may be compiled with CONFIG_SIZE_LIMIT defined, limiting the
Expand Down

0 comments on commit 9d81bcd

Please sign in to comment.