FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/pnm.c
Date: 2024-04-15 22:47:37
Exec Total Coverage
Lines: 120 158 75.9%
Functions: 3 3 100.0%
Branches: 104 168 61.9%

Line Branch Exec Source
1 /*
2 * PNM image format
3 * Copyright (c) 2002, 2003 Fabrice Bellard
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 #include <stdlib.h>
23 #include <string.h>
24
25 #include "libavutil/avassert.h"
26 #include "libavutil/imgutils.h"
27 #include "libavutil/avstring.h"
28 #include "avcodec.h"
29 #include "decode.h"
30 #include "pnm.h"
31
32 696787 static inline int pnm_space(int c)
33 {
34
6/8
✓ Branch 0 taken 661827 times.
✓ Branch 1 taken 34960 times.
✓ Branch 2 taken 523220 times.
✓ Branch 3 taken 138607 times.
✓ Branch 4 taken 523220 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 523220 times.
696787 return c == ' ' || c == '\n' || c == '\r' || c == '\t';
35 }
36
37 138943 static void pnm_get(PNMContext *sc, char *str, int buf_size)
38 {
39 char *s;
40 int c;
41 138943 const uint8_t *bs = sc->bytestream;
42 138943 const uint8_t *end = sc->bytestream_end;
43
44 /* skip spaces and comments */
45
1/2
✓ Branch 0 taken 138945 times.
✗ Branch 1 not taken.
138945 while (bs < end) {
46 138945 c = *bs++;
47
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 138943 times.
138945 if (c == '#') {
48
3/4
✓ Branch 0 taken 88 times.
✓ Branch 1 taken 2 times.
✓ Branch 2 taken 88 times.
✗ Branch 3 not taken.
90 while (c != '\n' && bs < end) {
49 88 c = *bs++;
50 }
51
1/2
✓ Branch 1 taken 138943 times.
✗ Branch 2 not taken.
138943 } else if (!pnm_space(c)) {
52 138943 break;
53 }
54 }
55
56 138943 s = str;
57
4/6
✓ Branch 0 taken 523220 times.
✗ Branch 1 not taken.
✓ Branch 3 taken 384277 times.
✓ Branch 4 taken 138943 times.
✓ Branch 5 taken 384277 times.
✗ Branch 6 not taken.
523220 while (bs < end && !pnm_space(c) && (s - str) < buf_size - 1) {
58 384277 *s++ = c;
59 384277 c = *bs++;
60 }
61 138943 *s = '\0';
62 138943 sc->bytestream = bs;
63 138943 }
64
65 34633 int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
66 {
67 char buf1[32], tuple_type[32];
68 int h, w, depth, maxval;
69 int ret;
70
71
2/2
✓ Branch 0 taken 34624 times.
✓ Branch 1 taken 9 times.
34633 if (s->bytestream_end - s->bytestream < 3 ||
72
1/2
✓ Branch 0 taken 34624 times.
✗ Branch 1 not taken.
34624 s->bytestream[0] != 'P' ||
73
1/2
✓ Branch 0 taken 34624 times.
✗ Branch 1 not taken.
34624 (s->bytestream[1] < '1' ||
74
2/2
✓ Branch 0 taken 56 times.
✓ Branch 1 taken 34568 times.
34624 s->bytestream[1] > '7' &&
75
2/2
✓ Branch 0 taken 28 times.
✓ Branch 1 taken 28 times.
56 s->bytestream[1] != 'f' &&
76
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 28 times.
28 s->bytestream[1] != 'F' &&
77 s->bytestream[1] != 'H' &&
78 s->bytestream[1] != 'h')) {
79 9 s->bytestream += s->bytestream_end > s->bytestream;
80 9 s->bytestream += s->bytestream_end > s->bytestream;
81 9 return AVERROR_INVALIDDATA;
82 }
83 34624 pnm_get(s, buf1, sizeof(buf1));
84 34624 s->type= buf1[1]-'0';
85 34624 s->half = 0;
86
87
2/2
✓ Branch 0 taken 28 times.
✓ Branch 1 taken 34596 times.
34624 if (buf1[1] == 'F') {
88 28 avctx->pix_fmt = AV_PIX_FMT_GBRPF32;
89
2/2
✓ Branch 0 taken 28 times.
✓ Branch 1 taken 34568 times.
34596 } else if (buf1[1] == 'f') {
90 28 avctx->pix_fmt = AV_PIX_FMT_GRAYF32;
91
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 34568 times.
34568 } else if (buf1[1] == 'H') {
92 avctx->pix_fmt = AV_PIX_FMT_GBRPF32;
93 s->half = 1;
94
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 34568 times.
34568 } else if (buf1[1] == 'h') {
95 avctx->pix_fmt = AV_PIX_FMT_GRAYF32;
96 s->half = 1;
97
3/4
✓ Branch 0 taken 34568 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 225 times.
✓ Branch 3 taken 34343 times.
34568 } else if (s->type==1 || s->type==4) {
98 225 avctx->pix_fmt = AV_PIX_FMT_MONOWHITE;
99
3/4
✓ Branch 0 taken 34343 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 34024 times.
✓ Branch 3 taken 319 times.
34343 } else if (s->type==2 || s->type==5) {
100
2/2
✓ Branch 0 taken 33620 times.
✓ Branch 1 taken 404 times.
34024 if (avctx->codec_id == AV_CODEC_ID_PGMYUV) {
101 33620 avctx->pix_fmt = AV_PIX_FMT_YUV420P;
102 33620 avctx->color_range = AVCOL_RANGE_MPEG;
103 } else {
104 404 avctx->pix_fmt = AV_PIX_FMT_GRAY8;
105 }
106
3/4
✓ Branch 0 taken 319 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 235 times.
✓ Branch 3 taken 84 times.
319 } else if (s->type==3 || s->type==6) {
107 235 avctx->pix_fmt = AV_PIX_FMT_RGB24;
108
1/2
✓ Branch 0 taken 84 times.
✗ Branch 1 not taken.
84 } else if (s->type==7) {
109 84 w = -1;
110 84 h = -1;
111 84 maxval = -1;
112 84 depth = -1;
113 84 tuple_type[0] = '\0';
114 for (;;) {
115 504 pnm_get(s, buf1, sizeof(buf1));
116
2/2
✓ Branch 0 taken 84 times.
✓ Branch 1 taken 420 times.
504 if (!strcmp(buf1, "WIDTH")) {
117 84 pnm_get(s, buf1, sizeof(buf1));
118 84 w = strtol(buf1, NULL, 10);
119
2/2
✓ Branch 0 taken 84 times.
✓ Branch 1 taken 336 times.
420 } else if (!strcmp(buf1, "HEIGHT")) {
120 84 pnm_get(s, buf1, sizeof(buf1));
121 84 h = strtol(buf1, NULL, 10);
122
2/2
✓ Branch 0 taken 84 times.
✓ Branch 1 taken 252 times.
336 } else if (!strcmp(buf1, "DEPTH")) {
123 84 pnm_get(s, buf1, sizeof(buf1));
124 84 depth = strtol(buf1, NULL, 10);
125
2/2
✓ Branch 0 taken 84 times.
✓ Branch 1 taken 168 times.
252 } else if (!strcmp(buf1, "MAXVAL")) {
126 84 pnm_get(s, buf1, sizeof(buf1));
127 84 maxval = strtol(buf1, NULL, 10);
128
2/2
✓ Branch 0 taken 84 times.
✓ Branch 1 taken 84 times.
168 } else if (!strcmp(buf1, "TUPLTYPE") ||
129 /* libavcodec used to write invalid files */
130
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 84 times.
84 !strcmp(buf1, "TUPLETYPE")) {
131 84 pnm_get(s, tuple_type, sizeof(tuple_type));
132
1/2
✓ Branch 0 taken 84 times.
✗ Branch 1 not taken.
84 } else if (!strcmp(buf1, "ENDHDR")) {
133 84 break;
134 } else {
135 return AVERROR_INVALIDDATA;
136 }
137 }
138
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 84 times.
84 if (!pnm_space(s->bytestream[-1]))
139 return AVERROR_INVALIDDATA;
140
141 /* check that all tags are present */
142
7/14
✓ Branch 0 taken 84 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 84 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 84 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 84 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 84 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 84 times.
✗ Branch 11 not taken.
✓ Branch 12 taken 84 times.
✗ Branch 13 not taken.
168 if (w <= 0 || h <= 0 || maxval <= 0 || maxval > UINT16_MAX || depth <= 0 || tuple_type[0] == '\0' ||
143
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 84 times.
168 av_image_check_size(w, h, 0, avctx) || s->bytestream >= s->bytestream_end)
144 return AVERROR_INVALIDDATA;
145
146 84 ret = ff_set_dimensions(avctx, w, h);
147
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 84 times.
84 if (ret < 0)
148 return ret;
149 84 s->maxval = maxval;
150
2/2
✓ Branch 0 taken 42 times.
✓ Branch 1 taken 42 times.
84 if (depth == 1) {
151
2/2
✓ Branch 0 taken 14 times.
✓ Branch 1 taken 28 times.
42 if (maxval == 1) {
152 14 avctx->pix_fmt = AV_PIX_FMT_MONOBLACK;
153
2/2
✓ Branch 0 taken 14 times.
✓ Branch 1 taken 14 times.
28 } else if (maxval < 256) {
154 14 avctx->pix_fmt = AV_PIX_FMT_GRAY8;
155 } else {
156 14 avctx->pix_fmt = AV_PIX_FMT_GRAY16;
157 }
158
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 42 times.
42 } else if (depth == 2) {
159 if (maxval < 256) {
160 avctx->pix_fmt = AV_PIX_FMT_GRAY8A;
161 } else {
162 avctx->pix_fmt = AV_PIX_FMT_YA16;
163 }
164
2/2
✓ Branch 0 taken 28 times.
✓ Branch 1 taken 14 times.
42 } else if (depth == 3) {
165
2/2
✓ Branch 0 taken 14 times.
✓ Branch 1 taken 14 times.
28 if (maxval < 256) {
166 14 avctx->pix_fmt = AV_PIX_FMT_RGB24;
167 } else {
168 14 avctx->pix_fmt = AV_PIX_FMT_RGB48;
169 }
170
1/2
✓ Branch 0 taken 14 times.
✗ Branch 1 not taken.
14 } else if (depth == 4) {
171
1/2
✓ Branch 0 taken 14 times.
✗ Branch 1 not taken.
14 if (maxval < 256) {
172 14 avctx->pix_fmt = AV_PIX_FMT_RGBA;
173 } else {
174 avctx->pix_fmt = AV_PIX_FMT_RGBA64;
175 }
176 } else {
177 return AVERROR_INVALIDDATA;
178 }
179 84 return 0;
180 } else {
181 av_assert0(0);
182 }
183 34540 pnm_get(s, buf1, sizeof(buf1));
184 34540 w = atoi(buf1);
185 34540 pnm_get(s, buf1, sizeof(buf1));
186 34540 h = atoi(buf1);
187
4/8
✓ Branch 0 taken 34540 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 34540 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 34540 times.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✓ Branch 8 taken 34540 times.
34540 if(w <= 0 || h <= 0 || av_image_check_size(w, h, 0, avctx) || s->bytestream >= s->bytestream_end)
188 return AVERROR_INVALIDDATA;
189
190 34540 ret = ff_set_dimensions(avctx, w, h);
191
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 34540 times.
34540 if (ret < 0)
192 return ret;
193
194
4/4
✓ Branch 0 taken 34512 times.
✓ Branch 1 taken 28 times.
✓ Branch 2 taken 28 times.
✓ Branch 3 taken 34484 times.
34540 if (avctx->pix_fmt == AV_PIX_FMT_GBRPF32 || avctx->pix_fmt == AV_PIX_FMT_GRAYF32) {
195 56 pnm_get(s, buf1, sizeof(buf1));
196
3/6
✓ Branch 1 taken 56 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 56 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✓ Branch 6 taken 56 times.
56 if (av_sscanf(buf1, "%f", &s->scale) != 1 || s->scale == 0.0 || !isfinite(s->scale)) {
197 av_log(avctx, AV_LOG_ERROR, "Invalid scale.\n");
198 return AVERROR_INVALIDDATA;
199 }
200 56 s->endian = s->scale < 0.f;
201 56 s->scale = fabsf(s->scale);
202 56 s->maxval = (1ULL << 32) - 1;
203
3/4
✓ Branch 0 taken 34259 times.
✓ Branch 1 taken 225 times.
✓ Branch 2 taken 34259 times.
✗ Branch 3 not taken.
34484 } else if (avctx->pix_fmt != AV_PIX_FMT_MONOWHITE && avctx->pix_fmt != AV_PIX_FMT_MONOBLACK) {
204 34259 pnm_get(s, buf1, sizeof(buf1));
205 34259 s->maxval = atoi(buf1);
206
2/4
✓ Branch 0 taken 34259 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 34259 times.
34259 if (s->maxval <= 0 || s->maxval > UINT16_MAX) {
207 av_log(avctx, AV_LOG_ERROR, "Invalid maxval: %d\n", s->maxval);
208 s->maxval = 255;
209 }
210
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 34259 times.
34259 if (s->maxval >= 256) {
211 if (avctx->pix_fmt == AV_PIX_FMT_GRAY8) {
212 avctx->pix_fmt = AV_PIX_FMT_GRAY16;
213 } else if (avctx->pix_fmt == AV_PIX_FMT_RGB24) {
214 avctx->pix_fmt = AV_PIX_FMT_RGB48;
215 } else if (avctx->pix_fmt == AV_PIX_FMT_YUV420P && s->maxval < 65536) {
216 if (s->maxval < 512)
217 avctx->pix_fmt = AV_PIX_FMT_YUV420P9;
218 else if (s->maxval < 1024)
219 avctx->pix_fmt = AV_PIX_FMT_YUV420P10;
220 else
221 avctx->pix_fmt = AV_PIX_FMT_YUV420P16;
222 } else {
223 av_log(avctx, AV_LOG_ERROR, "Unsupported pixel format\n");
224 avctx->pix_fmt = AV_PIX_FMT_NONE;
225 return AVERROR_INVALIDDATA;
226 }
227 }
228 }else
229 225 s->maxval=1;
230
231
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 34540 times.
34540 if (!pnm_space(s->bytestream[-1]))
232 return AVERROR_INVALIDDATA;
233
234 /* more check if YUV420 */
235
2/2
✓ Branch 1 taken 33648 times.
✓ Branch 2 taken 892 times.
34540 if ((av_pix_fmt_desc_get(avctx->pix_fmt)->flags & AV_PIX_FMT_FLAG_PLANAR) &&
236
2/2
✓ Branch 0 taken 33620 times.
✓ Branch 1 taken 28 times.
33648 avctx->pix_fmt != AV_PIX_FMT_GBRPF32) {
237
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33620 times.
33620 if ((avctx->width & 1) != 0)
238 return AVERROR_INVALIDDATA;
239 33620 h = (avctx->height * 2);
240
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33620 times.
33620 if ((h % 3) != 0)
241 return AVERROR_INVALIDDATA;
242 33620 h /= 3;
243 33620 avctx->height = h;
244 }
245 34540 return 0;
246 }
247