Home
last modified time | relevance | path

Searched refs:DSP_CALC_SCALING_SIZE (Results 1 – 3 of 3) sorted by relevance

/TwlSDK-5.4/build/demos.TWL/dsp/scaling-1/src/
Dmain.c58 #define OUTPUT_WIDTH DSP_CALC_SCALING_SIZE(AREA_WIDTH, SCALING_FACTOR_X) // Consider post-process…
59 #define OUTPUT_HEIGHT DSP_CALC_SCALING_SIZE(AREA_HEIGHT, SCALING_FACTOR_Y)
/TwlSDK-5.4/build/libraries/dsp/ARM9.TWL/src/
Ddsp_graphics.c59 if (DSP_CALC_SCALING_SIZE(src_width, rx) * ry >= 8192) in CheckLimitation()
65 if (DSP_CALC_SCALING_SIZE(src_width, rx) * ry >= 4096) in CheckLimitation()
/TwlSDK-5.4/include/twl/dsp/common/
Dgraphics.h92 #define DSP_CALC_SCALING_SIZE(value, ratio) ((u32)(value * (u32)(ratio * 1000) / 1000)) macro