FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavutil/integer.c
Date: 2024-04-24 18:52:15
Exec Total Coverage
Lines: 69 73 94.5%
Functions: 10 10 100.0%
Branches: 37 42 88.1%

Line Branch Exec Source
1 /*
2 * arbitrary precision integers
3 * Copyright (c) 2004 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 * arbitrary precision integers
25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */
27
28 #include <string.h>
29
30 #include "integer.h"
31 #include "avassert.h"
32 #include "intmath.h"
33
34 static const AVInteger zero_i;
35
36 786457 AVInteger av_add_i(AVInteger a, AVInteger b){
37 786457 int i, carry=0;
38
39
2/2
✓ Branch 0 taken 6291656 times.
✓ Branch 1 taken 786457 times.
7078113 for(i=0; i<AV_INTEGER_SIZE; i++){
40 6291656 carry= (carry>>16) + a.v[i] + b.v[i];
41 6291656 a.v[i]= carry;
42 }
43 786457 return a;
44 }
45
46 1344470 AVInteger av_sub_i(AVInteger a, AVInteger b){
47 1344470 int i, carry=0;
48
49
2/2
✓ Branch 0 taken 10755760 times.
✓ Branch 1 taken 1344470 times.
12100230 for(i=0; i<AV_INTEGER_SIZE; i++){
50 10755760 carry= (carry>>16) + a.v[i] - b.v[i];
51 10755760 a.v[i]= carry;
52 }
53 1344470 return a;
54 }
55
56 3932612 int av_log2_i(AVInteger a){
57 int i;
58
59
1/2
✓ Branch 0 taken 27546435 times.
✗ Branch 1 not taken.
27546435 for(i=AV_INTEGER_SIZE-1; i>=0; i--){
60
2/2
✓ Branch 0 taken 3932612 times.
✓ Branch 1 taken 23613823 times.
27546435 if(a.v[i])
61 3932612 return av_log2_16bit(a.v[i]) + 16*i;
62 }
63 return -1;
64 }
65
66 786784 AVInteger av_mul_i(AVInteger a, AVInteger b){
67 AVInteger out;
68 int i, j;
69 786784 int na= (av_log2_i(a)+16) >> 4;
70 786784 int nb= (av_log2_i(b)+16) >> 4;
71
72 786784 memset(&out, 0, sizeof(out));
73
74
2/2
✓ Branch 0 taken 1570146 times.
✓ Branch 1 taken 786784 times.
2356930 for(i=0; i<na; i++){
75 1570146 unsigned int carry=0;
76
77
2/2
✓ Branch 0 taken 1570134 times.
✓ Branch 1 taken 12 times.
1570146 if(a.v[i])
78
3/4
✓ Branch 0 taken 6271994 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 4701860 times.
✓ Branch 3 taken 1570134 times.
6271994 for(j=i; j<AV_INTEGER_SIZE && j-i<=nb; j++){
79 4701860 carry= (carry>>16) + out.v[j] + a.v[i]*(unsigned)b.v[j-i];
80 4701860 out.v[j]= carry;
81 }
82 }
83
84 786784 return out;
85 }
86
87 1075775 int av_cmp_i(AVInteger a, AVInteger b){
88 int i;
89 1075775 int v= (int16_t)a.v[AV_INTEGER_SIZE-1] - (int16_t)b.v[AV_INTEGER_SIZE-1];
90
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1075775 times.
1075775 if(v) return (v>>16)|1;
91
92
2/2
✓ Branch 0 taken 6496696 times.
✓ Branch 1 taken 3 times.
6496699 for(i=AV_INTEGER_SIZE-2; i>=0; i--){
93 6496696 int v= a.v[i] - b.v[i];
94
2/2
✓ Branch 0 taken 1075772 times.
✓ Branch 1 taken 5420924 times.
6496696 if(v) return (v>>16)|1;
95 }
96 3 return 0;
97 }
98
99 5558610 AVInteger av_shr_i(AVInteger a, int s){
100 AVInteger out;
101 int i;
102
103
2/2
✓ Branch 0 taken 44468880 times.
✓ Branch 1 taken 5558610 times.
50027490 for(i=0; i<AV_INTEGER_SIZE; i++){
104 44468880 unsigned int index= i + (s>>4);
105 44468880 unsigned int v=0;
106
2/2
✓ Branch 0 taken 40247016 times.
✓ Branch 1 taken 4221864 times.
44468880 if (index + 1 < AV_INTEGER_SIZE) v = a.v[index + 1] * (1U << 16);
107
2/2
✓ Branch 0 taken 39984476 times.
✓ Branch 1 taken 4484404 times.
44468880 if (index < AV_INTEGER_SIZE) v |= a.v[index];
108 44468880 out.v[i]= v >> (s&15);
109 }
110 5558610 return out;
111 }
112
113 786457 AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b){
114 786457 int i= av_log2_i(a) - av_log2_i(b);
115 AVInteger quot_temp;
116
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 786457 times.
786457 if(!quot) quot = &quot_temp;
117
118
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 786457 times.
786457 if ((int16_t)a.v[AV_INTEGER_SIZE-1] < 0) {
119 a = av_mod_i(quot, av_sub_i(zero_i, a), b);
120 *quot = av_sub_i(zero_i, *quot);
121 return av_sub_i(zero_i, a);
122 }
123
124 av_assert2((int16_t)a.v[AV_INTEGER_SIZE-1] >= 0 && (int16_t)b.v[AV_INTEGER_SIZE-1] >= 0);
125 av_assert2(av_log2_i(b)>=0);
126
127
2/2
✓ Branch 0 taken 262867 times.
✓ Branch 1 taken 523590 times.
786457 if(i > 0)
128 262867 b= av_shr_i(b, -i);
129
130 786457 memset(quot, 0, sizeof(AVInteger));
131
132
2/2
✓ Branch 0 taken 1075448 times.
✓ Branch 1 taken 786457 times.
1861905 while(i-- >= 0){
133 1075448 *quot= av_shr_i(*quot, -1);
134
2/2
✓ Branch 0 taken 558340 times.
✓ Branch 1 taken 517108 times.
1075448 if(av_cmp_i(a, b) >= 0){
135 558340 a= av_sub_i(a, b);
136 558340 quot->v[0] += 1;
137 }
138 1075448 b= av_shr_i(b, 1);
139 }
140 786457 return a;
141 }
142
143 786457 AVInteger av_div_i(AVInteger a, AVInteger b){
144 AVInteger quot;
145 786457 av_mod_i(&quot, a, b);
146 786457 return quot;
147 }
148
149 1573895 AVInteger av_int2i(int64_t a){
150 AVInteger out;
151 int i;
152
153
2/2
✓ Branch 0 taken 12591160 times.
✓ Branch 1 taken 1573895 times.
14165055 for(i=0; i<AV_INTEGER_SIZE; i++){
154 12591160 out.v[i]= a;
155 12591160 a>>=16;
156 }
157 1573895 return out;
158 }
159
160 7861627 int64_t av_i2int(AVInteger a){
161 7861627 uint64_t out = a.v[3];
162
163
2/2
✓ Branch 0 taken 23584881 times.
✓ Branch 1 taken 7861627 times.
31446508 for (int i = 2; i >= 0; i--)
164 23584881 out = (out << 16) | a.v[i];
165 7861627 return out;
166 }
167