Skip to content

Commit

Permalink
Fixed typo in NEON code
Browse files Browse the repository at this point in the history
  • Loading branch information
t-boiko authored and zlatinski committed Nov 25, 2024
1 parent b47e0db commit 9616fae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ size_t VulkanVideoDecoder::next_start_code<SIMD_ISA::NEON>(const uint8_t *pdatai
{
size_t i = 0;
size_t datasize32 = (datasize >> 5) << 5;
if (datasize > 32)
if (datasize32 > 32)
{
const uint8x16_t v0 = vdupq_n_u8(0);
const uint8x16_t v1 = vdupq_n_u8(1);
Expand Down

0 comments on commit 9616fae

Please sign in to comment.