Skip to content

Commit

Permalink
*fix bug in SSE4.1 optimizations of class ImageJpegLoader.
Browse files Browse the repository at this point in the history
  • Loading branch information
ermig1979 committed Nov 27, 2024
1 parent 7b73d81 commit 4b779e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Simd/SimdAvx512bwImageLoad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ namespace Simd
case SimdImageFilePpmTxt: return new ImagePpmTxtLoader(param);
case SimdImageFilePpmBin: return new ImagePpmBinLoader(param);
case SimdImageFilePng: return new Sse41::ImagePngLoader(param);
case SimdImageFileJpeg: return new Sse41::ImageJpegLoader(param);
case SimdImageFileJpeg: return new Avx2::ImageJpegLoader(param);
default:
return NULL;
}
Expand Down

0 comments on commit 4b779e8

Please sign in to comment.