MCPcopy Create free account
hub / github.com/DaedalusX64/daedalus / RShiftSubBlock

Function RShiftSubBlock

Source/Core/JpegTask.cpp:493–500  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

491}
492
493static void RShiftSubBlock(s16 *dst, const s16 *src, u32 shift)
494{
495
496 for (u32 i {}; i < SUBBLOCK_SIZE; ++i)
497 {
498 dst[i] = src[i] >> shift;
499 }
500}
501
502/***************************************************************************
503 * Fast 2D IDCT using separable formulation and normalization

Callers 1

jpeg_decode_OBFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected