mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit 'de1f8ead8993512925a3ee6c7491473414419e55'
* commit 'de1f8ead8993512925a3ee6c7491473414419e55': hevcdsp_template: templatize transquant_bypass Conflicts: libavcodec/hevcdsp_template.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
30156eab6d
@ -42,16 +42,16 @@ static void FUNC(put_pcm)(uint8_t *_dst, ptrdiff_t stride, int width, int height
|
||||
}
|
||||
}
|
||||
|
||||
static void FUNC(transform_add4x4)(uint8_t *_dst, int16_t *coeffs,
|
||||
ptrdiff_t stride)
|
||||
static av_always_inline void FUNC(transquant_bypass)(uint8_t *_dst, int16_t *coeffs,
|
||||
ptrdiff_t stride, int size)
|
||||
{
|
||||
int x, y;
|
||||
pixel *dst = (pixel *)_dst;
|
||||
|
||||
stride /= sizeof(pixel);
|
||||
|
||||
for (y = 0; y < 4; y++) {
|
||||
for (x = 0; x < 4; x++) {
|
||||
for (y = 0; y < size; y++) {
|
||||
for (x = 0; x < size; x++) {
|
||||
dst[x] = av_clip_pixel(dst[x] + *coeffs);
|
||||
coeffs++;
|
||||
}
|
||||
@ -59,55 +59,28 @@ static void FUNC(transform_add4x4)(uint8_t *_dst, int16_t *coeffs,
|
||||
}
|
||||
}
|
||||
|
||||
static void FUNC(transform_add4x4)(uint8_t *_dst, int16_t *coeffs,
|
||||
ptrdiff_t stride)
|
||||
{
|
||||
FUNC(transquant_bypass)(_dst, coeffs, stride, 4);
|
||||
}
|
||||
|
||||
static void FUNC(transform_add8x8)(uint8_t *_dst, int16_t *coeffs,
|
||||
ptrdiff_t stride)
|
||||
{
|
||||
int x, y;
|
||||
pixel *dst = (pixel *)_dst;
|
||||
|
||||
stride /= sizeof(pixel);
|
||||
|
||||
for (y = 0; y < 8; y++) {
|
||||
for (x = 0; x < 8; x++) {
|
||||
dst[x] = av_clip_pixel(dst[x] + *coeffs);
|
||||
coeffs++;
|
||||
}
|
||||
dst += stride;
|
||||
}
|
||||
FUNC(transquant_bypass)(_dst, coeffs, stride, 8);
|
||||
}
|
||||
|
||||
static void FUNC(transform_add16x16)(uint8_t *_dst, int16_t *coeffs,
|
||||
ptrdiff_t stride)
|
||||
{
|
||||
int x, y;
|
||||
pixel *dst = (pixel *)_dst;
|
||||
|
||||
stride /= sizeof(pixel);
|
||||
|
||||
for (y = 0; y < 16; y++) {
|
||||
for (x = 0; x < 16; x++) {
|
||||
dst[x] = av_clip_pixel(dst[x] + *coeffs);
|
||||
coeffs++;
|
||||
}
|
||||
dst += stride;
|
||||
}
|
||||
FUNC(transquant_bypass)(_dst, coeffs, stride, 16);
|
||||
}
|
||||
|
||||
static void FUNC(transform_add32x32)(uint8_t *_dst, int16_t *coeffs,
|
||||
ptrdiff_t stride)
|
||||
{
|
||||
int x, y;
|
||||
pixel *dst = (pixel *)_dst;
|
||||
|
||||
stride /= sizeof(pixel);
|
||||
|
||||
for (y = 0; y < 32; y++) {
|
||||
for (x = 0; x < 32; x++) {
|
||||
dst[x] = av_clip_pixel(dst[x] + *coeffs);
|
||||
coeffs++;
|
||||
}
|
||||
dst += stride;
|
||||
}
|
||||
FUNC(transquant_bypass)(_dst, coeffs, stride, 32);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user