FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/h264addpx_template.c
Date: 2024-04-26 14:42:52
Exec Total Coverage
Lines: 30 30 100.0%
Functions: 2 4 50.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 1733046 static void FUNCC(ff_h264_add_pixels4)(uint8_t *_dst, int16_t *_src, int stride)
31 {
32 int i;
33 1733046 pixel *dst = (pixel *) _dst;
34 1733046 dctcoef *src = (dctcoef *) _src;
35 1733046 stride /= sizeof(pixel);
36
37
2/2
✓ Branch 0 taken 3466092 times.
✓ Branch 1 taken 866523 times.
8665230 for (i = 0; i < 4; i++) {
38 6932184 dst[0] += (unsigned)src[0];
39 6932184 dst[1] += (unsigned)src[1];
40 6932184 dst[2] += (unsigned)src[2];
41 6932184 dst[3] += (unsigned)src[3];
42
43 6932184 dst += stride;
44 6932184 src += 4;
45 }
46
47 1733046 memset(_src, 0, sizeof(dctcoef) * 16);
48 1733046 }
49
50 45296 static void FUNCC(ff_h264_add_pixels8)(uint8_t *_dst, int16_t *_src, int stride)
51 {
52 int i;
53 45296 pixel *dst = (pixel *) _dst;
54 45296 dctcoef *src = (dctcoef *) _src;
55 45296 stride /= sizeof(pixel);
56
57
2/2
✓ Branch 0 taken 181184 times.
✓ Branch 1 taken 22648 times.
407664 for (i = 0; i < 8; i++) {
58 362368 dst[0] += (unsigned)src[0];
59 362368 dst[1] += (unsigned)src[1];
60 362368 dst[2] += (unsigned)src[2];
61 362368 dst[3] += (unsigned)src[3];
62 362368 dst[4] += (unsigned)src[4];
63 362368 dst[5] += (unsigned)src[5];
64 362368 dst[6] += (unsigned)src[6];
65 362368 dst[7] += (unsigned)src[7];
66
67 362368 dst += stride;
68 362368 src += 8;
69 }
70
71 45296 memset(_src, 0, sizeof(dctcoef) * 64);
72 45296 }
73