swscale/x86/rgb2rgb: add missing wrap for ff_uyvytoyuv422_avx2

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-06-09 15:56:43 -03:00
parent 287d139b77
commit 03546f49a3
1 changed files with 1 additions and 1 deletions

View File

@ -2432,10 +2432,10 @@ av_cold void rgb2rgb_init_x86(void)
shuffle_bytes_1230 = ff_shuffle_bytes_1230_avx2;
shuffle_bytes_3012 = ff_shuffle_bytes_3012_avx2;
shuffle_bytes_3210 = ff_shuffle_bytes_3210_avx2;
#endif
}
if (EXTERNAL_AVX2_FAST(cpu_flags)) {
uyvytoyuv422 = ff_uyvytoyuv422_avx2;
#endif
}
#endif
}