FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/h264addpx_template.c
Date: 2026-07-21 08:37:06
Exec Total Coverage
Lines: 30 30 100.0%
Functions: 4 4 100.0%
Branches: 4 4 100.0%

Line Branch Exec Source
1 /*
2 * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
3 * Copyright (c) 2003-2011 Michael Niedermayer <michaelni@gmx.at>
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 /**
23 * @file
24 * H.264 / AVC / MPEG-4 part10 DSP functions.
25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */
27
28 #include "bit_depth_template.c"
29
30 1733118 static void FUNCC(ff_h264_add_pixels4)(uint8_t *_dst, int16_t *_src, int stride)
31 {
32 int i;
33 1733118 pixel *dst = (pixel *) _dst;
34 1733118 dctcoef *src = (dctcoef *) _src;
35 1733118 stride /= sizeof(pixel);
36
37
2/2
✓ Branch 0 taken 3466236 times.
✓ Branch 1 taken 866559 times.
8665590 for (i = 0; i < 4; i++) {
38 6932472 dst[0] += (unsigned)src[0];
39 6932472 dst[1] += (unsigned)src[1];
40 6932472 dst[2] += (unsigned)src[2];
41 6932472 dst[3] += (unsigned)src[3];
42
43 6932472 dst += stride;
44 6932472 src += 4;
45 }
46
47 1733118 memset(_src, 0, sizeof(dctcoef) * 16);
48 1733118 }
49
50 45332 static void FUNCC(ff_h264_add_pixels8)(uint8_t *_dst, int16_t *_src, int stride)
51 {
52 int i;
53 45332 pixel *dst = (pixel *) _dst;
54 45332 dctcoef *src = (dctcoef *) _src;
55 45332 stride /= sizeof(pixel);
56
57
2/2
✓ Branch 0 taken 181328 times.
✓ Branch 1 taken 22666 times.
407988 for (i = 0; i < 8; i++) {
58 362656 dst[0] += (unsigned)src[0];
59 362656 dst[1] += (unsigned)src[1];
60 362656 dst[2] += (unsigned)src[2];
61 362656 dst[3] += (unsigned)src[3];
62 362656 dst[4] += (unsigned)src[4];
63 362656 dst[5] += (unsigned)src[5];
64 362656 dst[6] += (unsigned)src[6];
65 362656 dst[7] += (unsigned)src[7];
66
67 362656 dst += stride;
68 362656 src += 8;
69 }
70
71 45332 memset(_src, 0, sizeof(dctcoef) * 64);
72 45332 }
73