File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -664,10 +664,10 @@ static avifResult avifImageYUVAnyToRGBAnySlow(const avifImage * image,
664664 const uint8_t * uPlane = image -> yuvPlanes [AVIF_CHAN_U ];
665665 const uint8_t * vPlane = image -> yuvPlanes [AVIF_CHAN_V ];
666666 const uint8_t * aPlane = image -> alphaPlane ;
667- const size_t yRowBytes = image -> yuvRowBytes [AVIF_CHAN_Y ];
668- const size_t uRowBytes = image -> yuvRowBytes [AVIF_CHAN_U ];
669- const size_t vRowBytes = image -> yuvRowBytes [AVIF_CHAN_V ];
670- const size_t aRowBytes = image -> alphaRowBytes ;
667+ const uint32_t yRowBytes = image -> yuvRowBytes [AVIF_CHAN_Y ];
668+ const uint32_t uRowBytes = image -> yuvRowBytes [AVIF_CHAN_U ];
669+ const uint32_t vRowBytes = image -> yuvRowBytes [AVIF_CHAN_V ];
670+ const uint32_t aRowBytes = image -> alphaRowBytes ;
671671
672672 // Various observations and limits
673673 const avifBool yuvHasColor = (uPlane && vPlane && (image -> yuvFormat != AVIF_PIXEL_FORMAT_YUV400 ));
You can’t perform that action at this time.
0 commit comments