Coverage Report

Created: 2026-09-14 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavcodec/ttaencdsp.c
Line
Count
Source
1
/*
2
 * This file is part of FFmpeg.
3
 *
4
 * FFmpeg is free software; you can redistribute it and/or
5
 * modify it under the terms of the GNU Lesser General Public
6
 * License as published by the Free Software Foundation; either
7
 * version 2.1 of the License, or (at your option) any later version.
8
 *
9
 * FFmpeg is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 * Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public
15
 * License along with FFmpeg; if not, write to the Free Software
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
 */
18
19
#include "libavutil/attributes.h"
20
#include "ttaencdsp.h"
21
#include "config.h"
22
23
static int32_t ttaenc_filter_process_c(int32_t *qmi, int32_t *dx, int32_t *dl,
24
                                       int32_t *error, int32_t in, int32_t shift,
25
                                       int32_t round)
26
0
{
27
0
    uint32_t *qm = qmi;
28
29
0
    if (*error < 0) {
30
0
        qm[0] -= dx[0]; qm[1] -= dx[1]; qm[2] -= dx[2]; qm[3] -= dx[3];
31
0
        qm[4] -= dx[4]; qm[5] -= dx[5]; qm[6] -= dx[6]; qm[7] -= dx[7];
32
0
    } else if (*error > 0) {
33
0
        qm[0] += dx[0]; qm[1] += dx[1]; qm[2] += dx[2]; qm[3] += dx[3];
34
0
        qm[4] += dx[4]; qm[5] += dx[5]; qm[6] += dx[6]; qm[7] += dx[7];
35
0
    }
36
37
0
    round += dl[0] * qm[0] + dl[1] * qm[1] + dl[2] * qm[2] + dl[3] * qm[3] +
38
0
             dl[4] * qm[4] + dl[5] * qm[5] + dl[6] * qm[6] + dl[7] * qm[7];
39
40
0
    dx[0] = dx[1]; dx[1] = dx[2]; dx[2] = dx[3]; dx[3] = dx[4];
41
0
    dl[0] = dl[1]; dl[1] = dl[2]; dl[2] = dl[3]; dl[3] = dl[4];
42
43
0
    dx[4] = ((dl[4] >> 30) | 1);
44
0
    dx[5] = ((dl[5] >> 30) | 2) & ~1;
45
0
    dx[6] = ((dl[6] >> 30) | 2) & ~1;
46
0
    dx[7] = ((dl[7] >> 30) | 4) & ~3;
47
48
0
    dl[4]  = -(unsigned)dl[5];     dl[5] = -(unsigned)dl[6];
49
0
    dl[6]  = in -(unsigned)dl[7];  dl[7] = in;
50
0
    dl[5] += (unsigned)dl[6];      dl[4] += (unsigned)dl[5];
51
52
0
    in -= (round >> shift);
53
0
    *error = in;
54
55
0
    return in;
56
0
}
57
58
av_cold void ff_ttaencdsp_init(TTAEncDSPContext *c)
59
0
{
60
0
    c->filter_process = ttaenc_filter_process_c;
61
62
#if ARCH_X86 && HAVE_X86ASM
63
    ff_ttaencdsp_init_x86(c);
64
#endif
65
0
}