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 | 806807 | static inline int pnm_space(int c) | |
33 | { | ||
34 |
6/8✓ Branch 0 taken 766346 times.
✓ Branch 1 taken 40461 times.
✓ Branch 2 taken 605735 times.
✓ Branch 3 taken 160611 times.
✓ Branch 4 taken 605735 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 605735 times.
|
806807 | return c == ' ' || c == '\n' || c == '\r' || c == '\t'; |
35 | } | ||
36 | |||
37 | 160947 | static void pnm_get(PNMContext *sc, char *str, int buf_size) | |
38 | { | ||
39 | char *s; | ||
40 | int c; | ||
41 | 160947 | const uint8_t *bs = sc->bytestream; | |
42 | 160947 | const uint8_t *end = sc->bytestream_end; | |
43 | |||
44 | /* skip spaces and comments */ | ||
45 |
1/2✓ Branch 0 taken 160949 times.
✗ Branch 1 not taken.
|
160949 | while (bs < end) { |
46 | 160949 | c = *bs++; | |
47 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 160947 times.
|
160949 | 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 160947 times.
✗ Branch 2 not taken.
|
160947 | } else if (!pnm_space(c)) { |
52 | 160947 | break; | |
53 | } | ||
54 | } | ||
55 | |||
56 | 160947 | s = str; | |
57 |
4/6✓ Branch 0 taken 605735 times.
✗ Branch 1 not taken.
✓ Branch 3 taken 444788 times.
✓ Branch 4 taken 160947 times.
✓ Branch 5 taken 444788 times.
✗ Branch 6 not taken.
|
605735 | while (bs < end && !pnm_space(c) && (s - str) < buf_size - 1) { |
58 | 444788 | *s++ = c; | |
59 | 444788 | c = *bs++; | |
60 | } | ||
61 | 160947 | *s = '\0'; | |
62 | 160947 | sc->bytestream = bs; | |
63 | 160947 | } | |
64 | |||
65 | 40134 | 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 40125 times.
✓ Branch 1 taken 9 times.
|
40134 | if (s->bytestream_end - s->bytestream < 3 || |
72 |
1/2✓ Branch 0 taken 40125 times.
✗ Branch 1 not taken.
|
40125 | s->bytestream[0] != 'P' || |
73 |
1/2✓ Branch 0 taken 40125 times.
✗ Branch 1 not taken.
|
40125 | (s->bytestream[1] < '1' || |
74 |
2/2✓ Branch 0 taken 56 times.
✓ Branch 1 taken 40069 times.
|
40125 | 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 | 40125 | pnm_get(s, buf1, sizeof(buf1)); | |
84 | 40125 | s->type= buf1[1]-'0'; | |
85 | 40125 | s->half = 0; | |
86 | |||
87 |
2/2✓ Branch 0 taken 28 times.
✓ Branch 1 taken 40097 times.
|
40125 | if (buf1[1] == 'F') { |
88 | 28 | avctx->pix_fmt = AV_PIX_FMT_GBRPF32; | |
89 |
2/2✓ Branch 0 taken 28 times.
✓ Branch 1 taken 40069 times.
|
40097 | } else if (buf1[1] == 'f') { |
90 | 28 | avctx->pix_fmt = AV_PIX_FMT_GRAYF32; | |
91 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 40069 times.
|
40069 | } 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 40069 times.
|
40069 | } else if (buf1[1] == 'h') { |
95 | ✗ | avctx->pix_fmt = AV_PIX_FMT_GRAYF32; | |
96 | ✗ | s->half = 1; | |
97 |
3/4✓ Branch 0 taken 40069 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 225 times.
✓ Branch 3 taken 39844 times.
|
40069 | } else if (s->type==1 || s->type==4) { |
98 | 225 | avctx->pix_fmt = AV_PIX_FMT_MONOWHITE; | |
99 |
3/4✓ Branch 0 taken 39844 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 39525 times.
✓ Branch 3 taken 319 times.
|
39844 | } else if (s->type==2 || s->type==5) { |
100 |
2/2✓ Branch 0 taken 39123 times.
✓ Branch 1 taken 402 times.
|
39525 | if (avctx->codec_id == AV_CODEC_ID_PGMYUV) { |
101 | 39123 | avctx->pix_fmt = AV_PIX_FMT_YUV420P; | |
102 | 39123 | avctx->color_range = AVCOL_RANGE_MPEG; | |
103 | } else { | ||
104 | 402 | 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 | 40041 | pnm_get(s, buf1, sizeof(buf1)); | |
184 | 40041 | w = atoi(buf1); | |
185 | 40041 | pnm_get(s, buf1, sizeof(buf1)); | |
186 | 40041 | h = atoi(buf1); | |
187 |
4/8✓ Branch 0 taken 40041 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 40041 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 40041 times.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✓ Branch 8 taken 40041 times.
|
40041 | if(w <= 0 || h <= 0 || av_image_check_size(w, h, 0, avctx) || s->bytestream >= s->bytestream_end) |
188 | ✗ | return AVERROR_INVALIDDATA; | |
189 | |||
190 | 40041 | ret = ff_set_dimensions(avctx, w, h); | |
191 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 40041 times.
|
40041 | if (ret < 0) |
192 | ✗ | return ret; | |
193 | |||
194 |
4/4✓ Branch 0 taken 40013 times.
✓ Branch 1 taken 28 times.
✓ Branch 2 taken 28 times.
✓ Branch 3 taken 39985 times.
|
40041 | 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 39760 times.
✓ Branch 1 taken 225 times.
✓ Branch 2 taken 39760 times.
✗ Branch 3 not taken.
|
39985 | } else if (avctx->pix_fmt != AV_PIX_FMT_MONOWHITE && avctx->pix_fmt != AV_PIX_FMT_MONOBLACK) { |
204 | 39760 | pnm_get(s, buf1, sizeof(buf1)); | |
205 | 39760 | s->maxval = atoi(buf1); | |
206 |
2/4✓ Branch 0 taken 39760 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 39760 times.
|
39760 | 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 39760 times.
|
39760 | 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 40041 times.
|
40041 | if (!pnm_space(s->bytestream[-1])) |
232 | ✗ | return AVERROR_INVALIDDATA; | |
233 | |||
234 | /* more check if YUV420 */ | ||
235 |
2/2✓ Branch 1 taken 39151 times.
✓ Branch 2 taken 890 times.
|
40041 | if ((av_pix_fmt_desc_get(avctx->pix_fmt)->flags & AV_PIX_FMT_FLAG_PLANAR) && |
236 |
2/2✓ Branch 0 taken 39123 times.
✓ Branch 1 taken 28 times.
|
39151 | avctx->pix_fmt != AV_PIX_FMT_GBRPF32) { |
237 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 39123 times.
|
39123 | if ((avctx->width & 1) != 0) |
238 | ✗ | return AVERROR_INVALIDDATA; | |
239 | 39123 | h = (avctx->height * 2); | |
240 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 39123 times.
|
39123 | if ((h % 3) != 0) |
241 | ✗ | return AVERROR_INVALIDDATA; | |
242 | 39123 | h /= 3; | |
243 | 39123 | avctx->height = h; | |
244 | } | ||
245 | 40041 | return 0; | |
246 | } | ||
247 |