Mercurial > libavcodec.hg
annotate pnm.c @ 3514:db3335b2b8f1 libavcodec
Some fixes for decode_p_mb()
author | kostya |
---|---|
date | Mon, 24 Jul 2006 04:20:49 +0000 |
parents | cc4b4ea83e29 |
children | c8c591fe26f8 |
rev | line source |
---|---|
2344 | 1 /* |
2 * PNM image format | |
3 * Copyright (c) 2002, 2003 Fabrice Bellard. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2967
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
2344 | 18 */ |
19 #include "avcodec.h" | |
2348 | 20 #include "mpegvideo.h" //only for ParseContext |
2344 | 21 |
22 typedef struct PNMContext { | |
23 uint8_t *bytestream; | |
24 uint8_t *bytestream_start; | |
25 uint8_t *bytestream_end; | |
26 AVFrame picture; | |
27 } PNMContext; | |
28 | |
2967 | 29 static inline int pnm_space(int c) |
2344 | 30 { |
31 return (c == ' ' || c == '\n' || c == '\r' || c == '\t'); | |
32 } | |
33 | |
2967 | 34 static void pnm_get(PNMContext *sc, char *str, int buf_size) |
2344 | 35 { |
36 char *s; | |
37 int c; | |
2967 | 38 |
2344 | 39 /* skip spaces and comments */ |
40 for(;;) { | |
41 c = *sc->bytestream++; | |
42 if (c == '#') { | |
43 do { | |
44 c = *sc->bytestream++; | |
45 } while (c != '\n' && sc->bytestream < sc->bytestream_end); | |
46 } else if (!pnm_space(c)) { | |
47 break; | |
48 } | |
49 } | |
2967 | 50 |
2344 | 51 s = str; |
52 while (sc->bytestream < sc->bytestream_end && !pnm_space(c)) { | |
53 if ((s - str) < buf_size - 1) | |
54 *s++ = c; | |
55 c = *sc->bytestream++; | |
56 } | |
57 *s = '\0'; | |
58 } | |
59 | |
60 static int common_init(AVCodecContext *avctx){ | |
61 PNMContext *s = avctx->priv_data; | |
62 | |
63 avcodec_get_frame_defaults((AVFrame*)&s->picture); | |
64 avctx->coded_frame= (AVFrame*)&s->picture; | |
65 | |
66 return 0; | |
67 } | |
68 | |
2348 | 69 static int pnm_decode_header(AVCodecContext *avctx, PNMContext * const s){ |
2349 | 70 char buf1[32], tuple_type[32]; |
71 int h, w, depth, maxval;; | |
2344 | 72 |
73 pnm_get(s, buf1, sizeof(buf1)); | |
74 if (!strcmp(buf1, "P4")) { | |
75 avctx->pix_fmt = PIX_FMT_MONOWHITE; | |
76 } else if (!strcmp(buf1, "P5")) { | |
2967 | 77 if (avctx->codec_id == CODEC_ID_PGMYUV) |
2344 | 78 avctx->pix_fmt = PIX_FMT_YUV420P; |
79 else | |
80 avctx->pix_fmt = PIX_FMT_GRAY8; | |
81 } else if (!strcmp(buf1, "P6")) { | |
82 avctx->pix_fmt = PIX_FMT_RGB24; | |
2349 | 83 } else if (!strcmp(buf1, "P7")) { |
84 w = -1; | |
85 h = -1; | |
86 maxval = -1; | |
87 depth = -1; | |
88 tuple_type[0] = '\0'; | |
89 for(;;) { | |
90 pnm_get(s, buf1, sizeof(buf1)); | |
91 if (!strcmp(buf1, "WIDTH")) { | |
92 pnm_get(s, buf1, sizeof(buf1)); | |
93 w = strtol(buf1, NULL, 10); | |
94 } else if (!strcmp(buf1, "HEIGHT")) { | |
95 pnm_get(s, buf1, sizeof(buf1)); | |
96 h = strtol(buf1, NULL, 10); | |
97 } else if (!strcmp(buf1, "DEPTH")) { | |
98 pnm_get(s, buf1, sizeof(buf1)); | |
99 depth = strtol(buf1, NULL, 10); | |
100 } else if (!strcmp(buf1, "MAXVAL")) { | |
101 pnm_get(s, buf1, sizeof(buf1)); | |
102 maxval = strtol(buf1, NULL, 10); | |
103 } else if (!strcmp(buf1, "TUPLETYPE")) { | |
104 pnm_get(s, tuple_type, sizeof(tuple_type)); | |
105 } else if (!strcmp(buf1, "ENDHDR")) { | |
106 break; | |
107 } else { | |
108 return -1; | |
109 } | |
110 } | |
111 /* check that all tags are present */ | |
2422 | 112 if (w <= 0 || h <= 0 || maxval <= 0 || depth <= 0 || tuple_type[0] == '\0' || avcodec_check_dimensions(avctx, w, h)) |
2349 | 113 return -1; |
2967 | 114 |
2349 | 115 avctx->width = w; |
116 avctx->height = h; | |
117 if (depth == 1) { | |
118 if (maxval == 1) | |
119 avctx->pix_fmt = PIX_FMT_MONOWHITE; | |
2967 | 120 else |
2349 | 121 avctx->pix_fmt = PIX_FMT_GRAY8; |
122 } else if (depth == 3) { | |
123 avctx->pix_fmt = PIX_FMT_RGB24; | |
124 } else if (depth == 4) { | |
125 avctx->pix_fmt = PIX_FMT_RGBA32; | |
126 } else { | |
127 return -1; | |
128 } | |
129 return 0; | |
2344 | 130 } else { |
131 return -1; | |
132 } | |
133 pnm_get(s, buf1, sizeof(buf1)); | |
134 avctx->width = atoi(buf1); | |
135 if (avctx->width <= 0) | |
136 return -1; | |
137 pnm_get(s, buf1, sizeof(buf1)); | |
138 avctx->height = atoi(buf1); | |
2422 | 139 if(avcodec_check_dimensions(avctx, avctx->width, avctx->height)) |
2344 | 140 return -1; |
141 if (avctx->pix_fmt != PIX_FMT_MONOWHITE) { | |
142 pnm_get(s, buf1, sizeof(buf1)); | |
143 } | |
144 | |
145 /* more check if YUV420 */ | |
146 if (avctx->pix_fmt == PIX_FMT_YUV420P) { | |
147 if ((avctx->width & 1) != 0) | |
148 return -1; | |
149 h = (avctx->height * 2); | |
150 if ((h % 3) != 0) | |
151 return -1; | |
152 h /= 3; | |
153 avctx->height = h; | |
154 } | |
2348 | 155 return 0; |
156 } | |
157 | |
2967 | 158 static int pnm_decode_frame(AVCodecContext *avctx, |
2348 | 159 void *data, int *data_size, |
160 uint8_t *buf, int buf_size) | |
161 { | |
162 PNMContext * const s = avctx->priv_data; | |
163 AVFrame *picture = data; | |
164 AVFrame * const p= (AVFrame*)&s->picture; | |
165 int i, n, linesize, h; | |
166 unsigned char *ptr; | |
167 | |
168 s->bytestream_start= | |
169 s->bytestream= buf; | |
170 s->bytestream_end= buf + buf_size; | |
2967 | 171 |
2348 | 172 if(pnm_decode_header(avctx, s) < 0) |
2349 | 173 return -1; |
2967 | 174 |
2344 | 175 if(p->data[0]) |
176 avctx->release_buffer(avctx, p); | |
177 | |
178 p->reference= 0; | |
179 if(avctx->get_buffer(avctx, p) < 0){ | |
180 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); | |
181 return -1; | |
182 } | |
183 p->pict_type= FF_I_TYPE; | |
184 p->key_frame= 1; | |
2967 | 185 |
2344 | 186 switch(avctx->pix_fmt) { |
187 default: | |
188 return -1; | |
189 case PIX_FMT_RGB24: | |
190 n = avctx->width * 3; | |
191 goto do_read; | |
192 case PIX_FMT_GRAY8: | |
193 n = avctx->width; | |
194 goto do_read; | |
195 case PIX_FMT_MONOWHITE: | |
2349 | 196 case PIX_FMT_MONOBLACK: |
2344 | 197 n = (avctx->width + 7) >> 3; |
198 do_read: | |
199 ptr = p->data[0]; | |
200 linesize = p->linesize[0]; | |
2839 | 201 if(s->bytestream + n*avctx->height > s->bytestream_end) |
202 return -1; | |
2344 | 203 for(i = 0; i < avctx->height; i++) { |
204 memcpy(ptr, s->bytestream, n); | |
205 s->bytestream += n; | |
206 ptr += linesize; | |
207 } | |
208 break; | |
209 case PIX_FMT_YUV420P: | |
210 { | |
211 unsigned char *ptr1, *ptr2; | |
212 | |
213 n = avctx->width; | |
214 ptr = p->data[0]; | |
215 linesize = p->linesize[0]; | |
2839 | 216 if(s->bytestream + n*avctx->height*3/2 > s->bytestream_end) |
217 return -1; | |
2344 | 218 for(i = 0; i < avctx->height; i++) { |
219 memcpy(ptr, s->bytestream, n); | |
220 s->bytestream += n; | |
221 ptr += linesize; | |
222 } | |
223 ptr1 = p->data[1]; | |
224 ptr2 = p->data[2]; | |
225 n >>= 1; | |
226 h = avctx->height >> 1; | |
227 for(i = 0; i < h; i++) { | |
228 memcpy(ptr1, s->bytestream, n); | |
229 s->bytestream += n; | |
230 memcpy(ptr2, s->bytestream, n); | |
231 s->bytestream += n; | |
232 ptr1 += p->linesize[1]; | |
233 ptr2 += p->linesize[2]; | |
234 } | |
235 } | |
236 break; | |
2349 | 237 case PIX_FMT_RGBA32: |
238 ptr = p->data[0]; | |
239 linesize = p->linesize[0]; | |
2839 | 240 if(s->bytestream + avctx->width*avctx->height*4 > s->bytestream_end) |
241 return -1; | |
2349 | 242 for(i = 0; i < avctx->height; i++) { |
243 int j, r, g, b, a; | |
244 | |
245 for(j = 0;j < avctx->width; j++) { | |
246 r = *s->bytestream++; | |
247 g = *s->bytestream++; | |
248 b = *s->bytestream++; | |
249 a = *s->bytestream++; | |
250 ((uint32_t *)ptr)[j] = (a << 24) | (r << 16) | (g << 8) | b; | |
251 } | |
252 ptr += linesize; | |
253 } | |
254 break; | |
2344 | 255 } |
256 *picture= *(AVFrame*)&s->picture; | |
257 *data_size = sizeof(AVPicture); | |
258 | |
259 return s->bytestream - s->bytestream_start; | |
260 } | |
261 | |
262 static int pnm_encode_frame(AVCodecContext *avctx, unsigned char *outbuf, int buf_size, void *data){ | |
263 PNMContext *s = avctx->priv_data; | |
264 AVFrame *pict = data; | |
265 AVFrame * const p= (AVFrame*)&s->picture; | |
266 int i, h, h1, c, n, linesize; | |
267 uint8_t *ptr, *ptr1, *ptr2; | |
268 | |
2422 | 269 if(buf_size < avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height) + 200){ |
270 av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n"); | |
271 return -1; | |
272 } | |
273 | |
2344 | 274 *p = *pict; |
275 p->pict_type= FF_I_TYPE; | |
276 p->key_frame= 1; | |
2967 | 277 |
2344 | 278 s->bytestream_start= |
279 s->bytestream= outbuf; | |
280 s->bytestream_end= outbuf+buf_size; | |
281 | |
282 h = avctx->height; | |
283 h1 = h; | |
284 switch(avctx->pix_fmt) { | |
285 case PIX_FMT_MONOWHITE: | |
286 c = '4'; | |
287 n = (avctx->width + 7) >> 3; | |
288 break; | |
289 case PIX_FMT_GRAY8: | |
290 c = '5'; | |
291 n = avctx->width; | |
292 break; | |
293 case PIX_FMT_RGB24: | |
294 c = '6'; | |
295 n = avctx->width * 3; | |
296 break; | |
297 case PIX_FMT_YUV420P: | |
298 c = '5'; | |
299 n = avctx->width; | |
300 h1 = (h * 3) / 2; | |
301 break; | |
302 default: | |
303 return -1; | |
304 } | |
2967 | 305 snprintf(s->bytestream, s->bytestream_end - s->bytestream, |
2344 | 306 "P%c\n%d %d\n", |
307 c, avctx->width, h1); | |
308 s->bytestream += strlen(s->bytestream); | |
309 if (avctx->pix_fmt != PIX_FMT_MONOWHITE) { | |
2967 | 310 snprintf(s->bytestream, s->bytestream_end - s->bytestream, |
2344 | 311 "%d\n", 255); |
312 s->bytestream += strlen(s->bytestream); | |
313 } | |
314 | |
315 ptr = p->data[0]; | |
316 linesize = p->linesize[0]; | |
317 for(i=0;i<h;i++) { | |
318 memcpy(s->bytestream, ptr, n); | |
319 s->bytestream += n; | |
320 ptr += linesize; | |
321 } | |
2967 | 322 |
2344 | 323 if (avctx->pix_fmt == PIX_FMT_YUV420P) { |
324 h >>= 1; | |
325 n >>= 1; | |
326 ptr1 = p->data[1]; | |
327 ptr2 = p->data[2]; | |
328 for(i=0;i<h;i++) { | |
329 memcpy(s->bytestream, ptr1, n); | |
330 s->bytestream += n; | |
331 memcpy(s->bytestream, ptr2, n); | |
332 s->bytestream += n; | |
333 ptr1 += p->linesize[1]; | |
334 ptr2 += p->linesize[2]; | |
335 } | |
336 } | |
337 return s->bytestream - s->bytestream_start; | |
338 } | |
339 | |
340 static int pam_encode_frame(AVCodecContext *avctx, unsigned char *outbuf, int buf_size, void *data){ | |
341 PNMContext *s = avctx->priv_data; | |
342 AVFrame *pict = data; | |
343 AVFrame * const p= (AVFrame*)&s->picture; | |
344 int i, h, w, n, linesize, depth, maxval; | |
345 const char *tuple_type; | |
346 uint8_t *ptr; | |
347 | |
2422 | 348 if(buf_size < avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height) + 200){ |
349 av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n"); | |
350 return -1; | |
351 } | |
352 | |
2344 | 353 *p = *pict; |
354 p->pict_type= FF_I_TYPE; | |
355 p->key_frame= 1; | |
2967 | 356 |
2344 | 357 s->bytestream_start= |
358 s->bytestream= outbuf; | |
359 s->bytestream_end= outbuf+buf_size; | |
360 | |
361 h = avctx->height; | |
362 w = avctx->width; | |
363 switch(avctx->pix_fmt) { | |
364 case PIX_FMT_MONOWHITE: | |
365 n = (w + 7) >> 3; | |
366 depth = 1; | |
367 maxval = 1; | |
368 tuple_type = "BLACKANDWHITE"; | |
369 break; | |
370 case PIX_FMT_GRAY8: | |
371 n = w; | |
372 depth = 1; | |
373 maxval = 255; | |
374 tuple_type = "GRAYSCALE"; | |
375 break; | |
376 case PIX_FMT_RGB24: | |
377 n = w * 3; | |
378 depth = 3; | |
379 maxval = 255; | |
380 tuple_type = "RGB"; | |
381 break; | |
382 case PIX_FMT_RGBA32: | |
383 n = w * 4; | |
384 depth = 4; | |
385 maxval = 255; | |
386 tuple_type = "RGB_ALPHA"; | |
387 break; | |
388 default: | |
389 return -1; | |
390 } | |
2967 | 391 snprintf(s->bytestream, s->bytestream_end - s->bytestream, |
2344 | 392 "P7\nWIDTH %d\nHEIGHT %d\nDEPTH %d\nMAXVAL %d\nTUPLETYPE %s\nENDHDR\n", |
393 w, h, depth, maxval, tuple_type); | |
394 s->bytestream += strlen(s->bytestream); | |
2967 | 395 |
2344 | 396 ptr = p->data[0]; |
397 linesize = p->linesize[0]; | |
2967 | 398 |
2344 | 399 if (avctx->pix_fmt == PIX_FMT_RGBA32) { |
400 int j; | |
401 unsigned int v; | |
402 | |
403 for(i=0;i<h;i++) { | |
404 for(j=0;j<w;j++) { | |
405 v = ((uint32_t *)ptr)[j]; | |
406 *s->bytestream++ = v >> 16; | |
407 *s->bytestream++ = v >> 8; | |
408 *s->bytestream++ = v; | |
409 *s->bytestream++ = v >> 24; | |
410 } | |
411 ptr += linesize; | |
412 } | |
413 } else { | |
414 for(i=0;i<h;i++) { | |
415 memcpy(s->bytestream, ptr, n); | |
416 s->bytestream += n; | |
417 ptr += linesize; | |
418 } | |
419 } | |
420 return s->bytestream - s->bytestream_start; | |
421 } | |
422 | |
423 #if 0 | |
424 static int pnm_probe(AVProbeData *pd) | |
425 { | |
426 const char *p = pd->buf; | |
427 if (pd->buf_size >= 8 && | |
428 p[0] == 'P' && | |
429 p[1] >= '4' && p[1] <= '6' && | |
430 pnm_space(p[2]) ) | |
431 return AVPROBE_SCORE_MAX - 1; /* to permit pgmyuv probe */ | |
432 else | |
433 return 0; | |
434 } | |
435 | |
436 static int pgmyuv_probe(AVProbeData *pd) | |
437 { | |
438 if (match_ext(pd->filename, "pgmyuv")) | |
439 return AVPROBE_SCORE_MAX; | |
440 else | |
441 return 0; | |
442 } | |
443 | |
444 static int pam_probe(AVProbeData *pd) | |
445 { | |
446 const char *p = pd->buf; | |
447 if (pd->buf_size >= 8 && | |
448 p[0] == 'P' && | |
449 p[1] == '7' && | |
450 p[2] == '\n') | |
451 return AVPROBE_SCORE_MAX; | |
452 else | |
453 return 0; | |
454 } | |
455 #endif | |
456 | |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3036
diff
changeset
|
457 #ifdef CONFIG_PNM_PARSER |
2348 | 458 static int pnm_parse(AVCodecParserContext *s, |
459 AVCodecContext *avctx, | |
2967 | 460 uint8_t **poutbuf, int *poutbuf_size, |
2348 | 461 const uint8_t *buf, int buf_size) |
462 { | |
463 ParseContext *pc = s->priv_data; | |
464 PNMContext pnmctx; | |
465 int next; | |
466 | |
467 for(; pc->overread>0; pc->overread--){ | |
468 pc->buffer[pc->index++]= pc->buffer[pc->overread_index++]; | |
469 } | |
470 retry: | |
471 if(pc->index){ | |
472 pnmctx.bytestream_start= | |
473 pnmctx.bytestream= pc->buffer; | |
474 pnmctx.bytestream_end= pc->buffer + pc->index; | |
475 }else{ | |
476 pnmctx.bytestream_start= | |
2864
95bac7109ff0
Kill some compiler warnings. Compiled code verified identical after changes.
mru
parents:
2839
diff
changeset
|
477 pnmctx.bytestream= (uint8_t *) buf; /* casts avoid warnings */ |
95bac7109ff0
Kill some compiler warnings. Compiled code verified identical after changes.
mru
parents:
2839
diff
changeset
|
478 pnmctx.bytestream_end= (uint8_t *) buf + buf_size; |
2348 | 479 } |
480 if(pnm_decode_header(avctx, &pnmctx) < 0){ | |
481 if(pnmctx.bytestream < pnmctx.bytestream_end){ | |
482 if(pc->index){ | |
483 pc->index=0; | |
484 }else{ | |
485 buf++; | |
486 buf_size--; | |
487 } | |
488 goto retry; | |
489 } | |
490 #if 0 | |
491 if(pc->index && pc->index*2 + FF_INPUT_BUFFER_PADDING_SIZE < pc->buffer_size && buf_size > pc->index){ | |
492 memcpy(pc->buffer + pc->index, buf, pc->index); | |
493 pc->index += pc->index; | |
494 buf += pc->index; | |
495 buf_size -= pc->index; | |
496 goto retry; | |
497 } | |
498 #endif | |
499 next= END_NOT_FOUND; | |
500 }else{ | |
2967 | 501 next= pnmctx.bytestream - pnmctx.bytestream_start |
2348 | 502 + avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height); |
503 if(pnmctx.bytestream_start!=buf) | |
504 next-= pc->index; | |
505 if(next > buf_size) | |
506 next= END_NOT_FOUND; | |
507 } | |
2967 | 508 |
2348 | 509 if(ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size)<0){ |
510 *poutbuf = NULL; | |
511 *poutbuf_size = 0; | |
512 return buf_size; | |
513 } | |
514 *poutbuf = (uint8_t *)buf; | |
515 *poutbuf_size = buf_size; | |
516 return next; | |
517 } | |
518 | |
519 AVCodecParser pnm_parser = { | |
2349 | 520 { CODEC_ID_PGM, CODEC_ID_PGMYUV, CODEC_ID_PPM, CODEC_ID_PBM, CODEC_ID_PAM}, |
2348 | 521 sizeof(ParseContext), |
522 NULL, | |
523 pnm_parse, | |
524 ff_parse_close, | |
525 }; | |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3036
diff
changeset
|
526 #endif /* CONFIG_PNM_PARSER */ |
2348 | 527 |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
528 #ifdef CONFIG_PGM_ENCODER |
2344 | 529 AVCodec pgm_encoder = { |
530 "pgm", | |
531 CODEC_TYPE_VIDEO, | |
532 CODEC_ID_PGM, | |
533 sizeof(PNMContext), | |
534 common_init, | |
535 pnm_encode_frame, | |
536 NULL, //encode_end, | |
537 pnm_decode_frame, | |
2967 | 538 .pix_fmts= (enum PixelFormat[]){PIX_FMT_GRAY8, -1}, |
2344 | 539 }; |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
540 #endif // CONFIG_PGM_ENCODER |
2344 | 541 |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
542 #ifdef CONFIG_PGMYUV_ENCODER |
2344 | 543 AVCodec pgmyuv_encoder = { |
544 "pgmyuv", | |
545 CODEC_TYPE_VIDEO, | |
546 CODEC_ID_PGMYUV, | |
547 sizeof(PNMContext), | |
548 common_init, | |
549 pnm_encode_frame, | |
550 NULL, //encode_end, | |
551 pnm_decode_frame, | |
2967 | 552 .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, |
2344 | 553 }; |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
554 #endif // CONFIG_PGMYUV_ENCODER |
2344 | 555 |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
556 #ifdef CONFIG_PPM_ENCODER |
2344 | 557 AVCodec ppm_encoder = { |
558 "ppm", | |
559 CODEC_TYPE_VIDEO, | |
560 CODEC_ID_PPM, | |
561 sizeof(PNMContext), | |
562 common_init, | |
563 pnm_encode_frame, | |
564 NULL, //encode_end, | |
565 pnm_decode_frame, | |
2967 | 566 .pix_fmts= (enum PixelFormat[]){PIX_FMT_RGB24, -1}, |
2344 | 567 }; |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
568 #endif // CONFIG_PPM_ENCODER |
2344 | 569 |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
570 #ifdef CONFIG_PBM_ENCODER |
2344 | 571 AVCodec pbm_encoder = { |
572 "pbm", | |
573 CODEC_TYPE_VIDEO, | |
574 CODEC_ID_PBM, | |
575 sizeof(PNMContext), | |
576 common_init, | |
577 pnm_encode_frame, | |
578 NULL, //encode_end, | |
579 pnm_decode_frame, | |
2967 | 580 .pix_fmts= (enum PixelFormat[]){PIX_FMT_MONOWHITE, -1}, |
2344 | 581 }; |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
582 #endif // CONFIG_PBM_ENCODER |
2344 | 583 |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
584 #ifdef CONFIG_PAM_ENCODER |
2344 | 585 AVCodec pam_encoder = { |
586 "pam", | |
587 CODEC_TYPE_VIDEO, | |
588 CODEC_ID_PAM, | |
589 sizeof(PNMContext), | |
590 common_init, | |
591 pam_encode_frame, | |
592 NULL, //encode_end, | |
2349 | 593 pnm_decode_frame, |
2967 | 594 .pix_fmts= (enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGBA32, PIX_FMT_GRAY8, PIX_FMT_MONOWHITE, -1}, |
2344 | 595 }; |
2661
b2846918585c
a few #ifdef CONFIG_X_ENCODER, patch by (Roine Gustafsson <roine users.sourceforge net]
michael
parents:
2453
diff
changeset
|
596 #endif // CONFIG_PAM_ENCODER |