mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/diracdsp: use av_clip_uintp2
Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
7d8891593c
commit
033e7dbd31
@ -151,39 +151,27 @@ static void put_signed_rect_clamped_8bit_c(uint8_t *dst, int dst_stride, const u
|
||||
}
|
||||
}
|
||||
|
||||
static void put_signed_rect_clamped_10bit_c(uint8_t *_dst, int dst_stride, const uint8_t *_src, int src_stride, int width, int height)
|
||||
{
|
||||
int x, y;
|
||||
uint16_t *dst = (uint16_t *)_dst;
|
||||
int32_t *src = (int32_t *)_src;
|
||||
for (y = 0; y < height; y++) {
|
||||
for (x = 0; x < width; x+=4) {
|
||||
dst[x ] = av_clip(src[x ] + 512, 0, (1 << 10) - 1);
|
||||
dst[x+1] = av_clip(src[x+1] + 512, 0, (1 << 10) - 1);
|
||||
dst[x+2] = av_clip(src[x+2] + 512, 0, (1 << 10) - 1);
|
||||
dst[x+3] = av_clip(src[x+3] + 512, 0, (1 << 10) - 1);
|
||||
}
|
||||
dst += dst_stride >> 1;
|
||||
src += src_stride >> 2;
|
||||
}
|
||||
#define PUT_SIGNED_RECT_CLAMPED(PX) \
|
||||
static void put_signed_rect_clamped_ ## PX ## bit_c(uint8_t *_dst, int dst_stride, const uint8_t *_src, \
|
||||
int src_stride, int width, int height) \
|
||||
{ \
|
||||
int x, y; \
|
||||
uint16_t *dst = (uint16_t *)_dst; \
|
||||
int32_t *src = (int32_t *)_src; \
|
||||
for (y = 0; y < height; y++) { \
|
||||
for (x = 0; x < width; x+=4) { \
|
||||
dst[x ] = av_clip_uintp2(src[x ] + (1 << (PX - 1)), PX); \
|
||||
dst[x+1] = av_clip_uintp2(src[x+1] + (1 << (PX - 1)), PX); \
|
||||
dst[x+2] = av_clip_uintp2(src[x+2] + (1 << (PX - 1)), PX); \
|
||||
dst[x+3] = av_clip_uintp2(src[x+3] + (1 << (PX - 1)), PX); \
|
||||
} \
|
||||
dst += dst_stride >> 1; \
|
||||
src += src_stride >> 2; \
|
||||
} \
|
||||
}
|
||||
|
||||
static void put_signed_rect_clamped_12bit_c(uint8_t *_dst, int dst_stride, const uint8_t *_src, int src_stride, int width, int height)
|
||||
{
|
||||
int x, y;
|
||||
uint16_t *dst = (uint16_t *)_dst;
|
||||
int32_t *src = (int32_t *)_src;
|
||||
for (y = 0; y < height; y++) {
|
||||
for (x = 0; x < width; x+=4) {
|
||||
dst[x ] = av_clip(src[x ] + 2048, 0, (1 << 12) - 1);
|
||||
dst[x+1] = av_clip(src[x+1] + 2048, 0, (1 << 12) - 1);
|
||||
dst[x+2] = av_clip(src[x+2] + 2048, 0, (1 << 12) - 1);
|
||||
dst[x+3] = av_clip(src[x+3] + 2048, 0, (1 << 12) - 1);
|
||||
}
|
||||
dst += dst_stride >> 1;
|
||||
src += src_stride >> 2;
|
||||
}
|
||||
}
|
||||
PUT_SIGNED_RECT_CLAMPED(10)
|
||||
PUT_SIGNED_RECT_CLAMPED(12)
|
||||
|
||||
static void add_rect_clamped_c(uint8_t *dst, const uint16_t *src, int stride,
|
||||
const int16_t *idwt, int idwt_stride,
|
||||
|
Loading…
Reference in New Issue
Block a user