Rename dec2() function
[FFMpeg-mirror/DVCPRO-HD.git] / libavcodec / imgconvert.c
blob6ef00c9100d8651eeba87bfcaf8c4da9b02c86e5
1 /*
2 * Misc image conversion routines
3 * Copyright (c) 2001, 2002, 2003 Fabrice Bellard.
5 * This file is part of FFmpeg.
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.
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.
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
22 /**
23 * @file imgconvert.c
24 * misc image conversion routines
27 /* TODO:
28 * - write 'ffimg' program to test all the image related stuff
29 * - move all api to slice based system
30 * - integrate deinterlacing, postprocessing and scaling in the conversion process
33 #include "avcodec.h"
34 #include "dsputil.h"
35 #include "colorspace.h"
37 #ifdef HAVE_MMX
38 #include "i386/mmx.h"
39 #endif
41 #define xglue(x, y) x ## y
42 #define glue(x, y) xglue(x, y)
44 #define FF_COLOR_RGB 0 /**< RGB color space */
45 #define FF_COLOR_GRAY 1 /**< gray color space */
46 #define FF_COLOR_YUV 2 /**< YUV color space. 16 <= Y <= 235, 16 <= U, V <= 240 */
47 #define FF_COLOR_YUV_JPEG 3 /**< YUV color space. 0 <= Y <= 255, 0 <= U, V <= 255 */
49 #define FF_PIXEL_PLANAR 0 /**< each channel has one component in AVPicture */
50 #define FF_PIXEL_PACKED 1 /**< only one components containing all the channels */
51 #define FF_PIXEL_PALETTE 2 /**< one components containing indexes for a palette */
53 typedef struct PixFmtInfo {
54 const char *name;
55 uint8_t nb_channels; /**< number of channels (including alpha) */
56 uint8_t color_type; /**< color type (see FF_COLOR_xxx constants) */
57 uint8_t pixel_type; /**< pixel storage type (see FF_PIXEL_xxx constants) */
58 uint8_t is_alpha : 1; /**< true if alpha can be specified */
59 uint8_t x_chroma_shift; /**< X chroma subsampling factor is 2 ^ shift */
60 uint8_t y_chroma_shift; /**< Y chroma subsampling factor is 2 ^ shift */
61 uint8_t depth; /**< bit depth of the color components */
62 } PixFmtInfo;
64 /* this table gives more information about formats */
65 static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = {
66 /* YUV formats */
67 [PIX_FMT_YUV420P] = {
68 .name = "yuv420p",
69 .nb_channels = 3,
70 .color_type = FF_COLOR_YUV,
71 .pixel_type = FF_PIXEL_PLANAR,
72 .depth = 8,
73 .x_chroma_shift = 1, .y_chroma_shift = 1,
75 [PIX_FMT_YUV422P] = {
76 .name = "yuv422p",
77 .nb_channels = 3,
78 .color_type = FF_COLOR_YUV,
79 .pixel_type = FF_PIXEL_PLANAR,
80 .depth = 8,
81 .x_chroma_shift = 1, .y_chroma_shift = 0,
83 [PIX_FMT_YUV444P] = {
84 .name = "yuv444p",
85 .nb_channels = 3,
86 .color_type = FF_COLOR_YUV,
87 .pixel_type = FF_PIXEL_PLANAR,
88 .depth = 8,
89 .x_chroma_shift = 0, .y_chroma_shift = 0,
91 [PIX_FMT_YUYV422] = {
92 .name = "yuyv422",
93 .nb_channels = 1,
94 .color_type = FF_COLOR_YUV,
95 .pixel_type = FF_PIXEL_PACKED,
96 .depth = 8,
97 .x_chroma_shift = 1, .y_chroma_shift = 0,
99 [PIX_FMT_UYVY422] = {
100 .name = "uyvy422",
101 .nb_channels = 1,
102 .color_type = FF_COLOR_YUV,
103 .pixel_type = FF_PIXEL_PACKED,
104 .depth = 8,
105 .x_chroma_shift = 1, .y_chroma_shift = 0,
107 [PIX_FMT_YUV410P] = {
108 .name = "yuv410p",
109 .nb_channels = 3,
110 .color_type = FF_COLOR_YUV,
111 .pixel_type = FF_PIXEL_PLANAR,
112 .depth = 8,
113 .x_chroma_shift = 2, .y_chroma_shift = 2,
115 [PIX_FMT_YUV411P] = {
116 .name = "yuv411p",
117 .nb_channels = 3,
118 .color_type = FF_COLOR_YUV,
119 .pixel_type = FF_PIXEL_PLANAR,
120 .depth = 8,
121 .x_chroma_shift = 2, .y_chroma_shift = 0,
123 [PIX_FMT_YUV440P] = {
124 .name = "yuv440p",
125 .nb_channels = 3,
126 .color_type = FF_COLOR_YUV,
127 .pixel_type = FF_PIXEL_PLANAR,
128 .depth = 8,
129 .x_chroma_shift = 0, .y_chroma_shift = 1,
132 /* YUV formats with alpha plane */
133 [PIX_FMT_YUVA420P] = {
134 .name = "yuva420p",
135 .nb_channels = 4,
136 .color_type = FF_COLOR_YUV,
137 .pixel_type = FF_PIXEL_PLANAR,
138 .depth = 8,
139 .x_chroma_shift = 1, .y_chroma_shift = 1,
142 /* JPEG YUV */
143 [PIX_FMT_YUVJ420P] = {
144 .name = "yuvj420p",
145 .nb_channels = 3,
146 .color_type = FF_COLOR_YUV_JPEG,
147 .pixel_type = FF_PIXEL_PLANAR,
148 .depth = 8,
149 .x_chroma_shift = 1, .y_chroma_shift = 1,
151 [PIX_FMT_YUVJ422P] = {
152 .name = "yuvj422p",
153 .nb_channels = 3,
154 .color_type = FF_COLOR_YUV_JPEG,
155 .pixel_type = FF_PIXEL_PLANAR,
156 .depth = 8,
157 .x_chroma_shift = 1, .y_chroma_shift = 0,
159 [PIX_FMT_YUVJ444P] = {
160 .name = "yuvj444p",
161 .nb_channels = 3,
162 .color_type = FF_COLOR_YUV_JPEG,
163 .pixel_type = FF_PIXEL_PLANAR,
164 .depth = 8,
165 .x_chroma_shift = 0, .y_chroma_shift = 0,
167 [PIX_FMT_YUVJ440P] = {
168 .name = "yuvj440p",
169 .nb_channels = 3,
170 .color_type = FF_COLOR_YUV_JPEG,
171 .pixel_type = FF_PIXEL_PLANAR,
172 .depth = 8,
173 .x_chroma_shift = 0, .y_chroma_shift = 1,
176 /* RGB formats */
177 [PIX_FMT_RGB24] = {
178 .name = "rgb24",
179 .nb_channels = 3,
180 .color_type = FF_COLOR_RGB,
181 .pixel_type = FF_PIXEL_PACKED,
182 .depth = 8,
183 .x_chroma_shift = 0, .y_chroma_shift = 0,
185 [PIX_FMT_BGR24] = {
186 .name = "bgr24",
187 .nb_channels = 3,
188 .color_type = FF_COLOR_RGB,
189 .pixel_type = FF_PIXEL_PACKED,
190 .depth = 8,
191 .x_chroma_shift = 0, .y_chroma_shift = 0,
193 [PIX_FMT_RGB32] = {
194 .name = "rgb32",
195 .nb_channels = 4, .is_alpha = 1,
196 .color_type = FF_COLOR_RGB,
197 .pixel_type = FF_PIXEL_PACKED,
198 .depth = 8,
199 .x_chroma_shift = 0, .y_chroma_shift = 0,
201 [PIX_FMT_RGB565] = {
202 .name = "rgb565",
203 .nb_channels = 3,
204 .color_type = FF_COLOR_RGB,
205 .pixel_type = FF_PIXEL_PACKED,
206 .depth = 5,
207 .x_chroma_shift = 0, .y_chroma_shift = 0,
209 [PIX_FMT_RGB555] = {
210 .name = "rgb555",
211 .nb_channels = 3,
212 .color_type = FF_COLOR_RGB,
213 .pixel_type = FF_PIXEL_PACKED,
214 .depth = 5,
215 .x_chroma_shift = 0, .y_chroma_shift = 0,
218 /* gray / mono formats */
219 [PIX_FMT_GRAY16BE] = {
220 .name = "gray16be",
221 .nb_channels = 1,
222 .color_type = FF_COLOR_GRAY,
223 .pixel_type = FF_PIXEL_PLANAR,
224 .depth = 16,
226 [PIX_FMT_GRAY16LE] = {
227 .name = "gray16le",
228 .nb_channels = 1,
229 .color_type = FF_COLOR_GRAY,
230 .pixel_type = FF_PIXEL_PLANAR,
231 .depth = 16,
233 [PIX_FMT_GRAY8] = {
234 .name = "gray",
235 .nb_channels = 1,
236 .color_type = FF_COLOR_GRAY,
237 .pixel_type = FF_PIXEL_PLANAR,
238 .depth = 8,
240 [PIX_FMT_MONOWHITE] = {
241 .name = "monow",
242 .nb_channels = 1,
243 .color_type = FF_COLOR_GRAY,
244 .pixel_type = FF_PIXEL_PLANAR,
245 .depth = 1,
247 [PIX_FMT_MONOBLACK] = {
248 .name = "monob",
249 .nb_channels = 1,
250 .color_type = FF_COLOR_GRAY,
251 .pixel_type = FF_PIXEL_PLANAR,
252 .depth = 1,
255 /* paletted formats */
256 [PIX_FMT_PAL8] = {
257 .name = "pal8",
258 .nb_channels = 4, .is_alpha = 1,
259 .color_type = FF_COLOR_RGB,
260 .pixel_type = FF_PIXEL_PALETTE,
261 .depth = 8,
263 [PIX_FMT_XVMC_MPEG2_MC] = {
264 .name = "xvmcmc",
266 [PIX_FMT_XVMC_MPEG2_IDCT] = {
267 .name = "xvmcidct",
269 [PIX_FMT_UYYVYY411] = {
270 .name = "uyyvyy411",
271 .nb_channels = 1,
272 .color_type = FF_COLOR_YUV,
273 .pixel_type = FF_PIXEL_PACKED,
274 .depth = 8,
275 .x_chroma_shift = 2, .y_chroma_shift = 0,
277 [PIX_FMT_BGR32] = {
278 .name = "bgr32",
279 .nb_channels = 4, .is_alpha = 1,
280 .color_type = FF_COLOR_RGB,
281 .pixel_type = FF_PIXEL_PACKED,
282 .depth = 8,
283 .x_chroma_shift = 0, .y_chroma_shift = 0,
285 [PIX_FMT_BGR565] = {
286 .name = "bgr565",
287 .nb_channels = 3,
288 .color_type = FF_COLOR_RGB,
289 .pixel_type = FF_PIXEL_PACKED,
290 .depth = 5,
291 .x_chroma_shift = 0, .y_chroma_shift = 0,
293 [PIX_FMT_BGR555] = {
294 .name = "bgr555",
295 .nb_channels = 3,
296 .color_type = FF_COLOR_RGB,
297 .pixel_type = FF_PIXEL_PACKED,
298 .depth = 5,
299 .x_chroma_shift = 0, .y_chroma_shift = 0,
301 [PIX_FMT_RGB8] = {
302 .name = "rgb8",
303 .nb_channels = 1,
304 .color_type = FF_COLOR_RGB,
305 .pixel_type = FF_PIXEL_PACKED,
306 .depth = 8,
307 .x_chroma_shift = 0, .y_chroma_shift = 0,
309 [PIX_FMT_RGB4] = {
310 .name = "rgb4",
311 .nb_channels = 1,
312 .color_type = FF_COLOR_RGB,
313 .pixel_type = FF_PIXEL_PACKED,
314 .depth = 4,
315 .x_chroma_shift = 0, .y_chroma_shift = 0,
317 [PIX_FMT_RGB4_BYTE] = {
318 .name = "rgb4_byte",
319 .nb_channels = 1,
320 .color_type = FF_COLOR_RGB,
321 .pixel_type = FF_PIXEL_PACKED,
322 .depth = 8,
323 .x_chroma_shift = 0, .y_chroma_shift = 0,
325 [PIX_FMT_BGR8] = {
326 .name = "bgr8",
327 .nb_channels = 1,
328 .color_type = FF_COLOR_RGB,
329 .pixel_type = FF_PIXEL_PACKED,
330 .depth = 8,
331 .x_chroma_shift = 0, .y_chroma_shift = 0,
333 [PIX_FMT_BGR4] = {
334 .name = "bgr4",
335 .nb_channels = 1,
336 .color_type = FF_COLOR_RGB,
337 .pixel_type = FF_PIXEL_PACKED,
338 .depth = 4,
339 .x_chroma_shift = 0, .y_chroma_shift = 0,
341 [PIX_FMT_BGR4_BYTE] = {
342 .name = "bgr4_byte",
343 .nb_channels = 1,
344 .color_type = FF_COLOR_RGB,
345 .pixel_type = FF_PIXEL_PACKED,
346 .depth = 8,
347 .x_chroma_shift = 0, .y_chroma_shift = 0,
349 [PIX_FMT_NV12] = {
350 .name = "nv12",
351 .nb_channels = 2,
352 .color_type = FF_COLOR_YUV,
353 .pixel_type = FF_PIXEL_PLANAR,
354 .depth = 8,
355 .x_chroma_shift = 1, .y_chroma_shift = 1,
357 [PIX_FMT_NV21] = {
358 .name = "nv12",
359 .nb_channels = 2,
360 .color_type = FF_COLOR_YUV,
361 .pixel_type = FF_PIXEL_PLANAR,
362 .depth = 8,
363 .x_chroma_shift = 1, .y_chroma_shift = 1,
366 [PIX_FMT_BGR32_1] = {
367 .name = "bgr32_1",
368 .nb_channels = 4, .is_alpha = 1,
369 .color_type = FF_COLOR_RGB,
370 .pixel_type = FF_PIXEL_PACKED,
371 .depth = 8,
372 .x_chroma_shift = 0, .y_chroma_shift = 0,
374 [PIX_FMT_RGB32_1] = {
375 .name = "rgb32_1",
376 .nb_channels = 4, .is_alpha = 1,
377 .color_type = FF_COLOR_RGB,
378 .pixel_type = FF_PIXEL_PACKED,
379 .depth = 8,
380 .x_chroma_shift = 0, .y_chroma_shift = 0,
384 void avcodec_get_chroma_sub_sample(int pix_fmt, int *h_shift, int *v_shift)
386 *h_shift = pix_fmt_info[pix_fmt].x_chroma_shift;
387 *v_shift = pix_fmt_info[pix_fmt].y_chroma_shift;
390 const char *avcodec_get_pix_fmt_name(int pix_fmt)
392 if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB)
393 return "???";
394 else
395 return pix_fmt_info[pix_fmt].name;
398 enum PixelFormat avcodec_get_pix_fmt(const char* name)
400 int i;
402 for (i=0; i < PIX_FMT_NB; i++)
403 if (!strcmp(pix_fmt_info[i].name, name))
404 break;
405 return i;
408 void avcodec_pix_fmt_string (char *buf, int buf_size, int pix_fmt)
410 /* print header */
411 if (pix_fmt < 0)
412 snprintf (buf, buf_size,
413 "name " " nb_channels" " depth" " is_alpha"
415 else{
416 PixFmtInfo info= pix_fmt_info[pix_fmt];
418 char is_alpha_char= info.is_alpha ? 'y' : 'n';
420 snprintf (buf, buf_size,
421 "%-10s" " %1d " " %2d " " %c ",
422 info.name,
423 info.nb_channels,
424 info.depth,
425 is_alpha_char
430 int ff_fill_linesize(AVPicture *picture, int pix_fmt, int width)
432 int w2;
433 const PixFmtInfo *pinfo;
435 memset(picture->linesize, 0, sizeof(picture->linesize));
437 pinfo = &pix_fmt_info[pix_fmt];
438 switch(pix_fmt) {
439 case PIX_FMT_YUV420P:
440 case PIX_FMT_YUV422P:
441 case PIX_FMT_YUV444P:
442 case PIX_FMT_YUV410P:
443 case PIX_FMT_YUV411P:
444 case PIX_FMT_YUV440P:
445 case PIX_FMT_YUVJ420P:
446 case PIX_FMT_YUVJ422P:
447 case PIX_FMT_YUVJ444P:
448 case PIX_FMT_YUVJ440P:
449 w2 = (width + (1 << pinfo->x_chroma_shift) - 1) >> pinfo->x_chroma_shift;
450 picture->linesize[0] = width;
451 picture->linesize[1] = w2;
452 picture->linesize[2] = w2;
453 break;
454 case PIX_FMT_YUVA420P:
455 w2 = (width + (1 << pinfo->x_chroma_shift) - 1) >> pinfo->x_chroma_shift;
456 picture->linesize[0] = width;
457 picture->linesize[1] = w2;
458 picture->linesize[2] = w2;
459 picture->linesize[3] = width;
460 break;
461 case PIX_FMT_NV12:
462 case PIX_FMT_NV21:
463 w2 = (width + (1 << pinfo->x_chroma_shift) - 1) >> pinfo->x_chroma_shift;
464 picture->linesize[0] = width;
465 picture->linesize[1] = w2;
466 break;
467 case PIX_FMT_RGB24:
468 case PIX_FMT_BGR24:
469 picture->linesize[0] = width * 3;
470 break;
471 case PIX_FMT_RGB32:
472 case PIX_FMT_BGR32:
473 case PIX_FMT_RGB32_1:
474 case PIX_FMT_BGR32_1:
475 picture->linesize[0] = width * 4;
476 break;
477 case PIX_FMT_GRAY16BE:
478 case PIX_FMT_GRAY16LE:
479 case PIX_FMT_BGR555:
480 case PIX_FMT_BGR565:
481 case PIX_FMT_RGB555:
482 case PIX_FMT_RGB565:
483 case PIX_FMT_YUYV422:
484 picture->linesize[0] = width * 2;
485 break;
486 case PIX_FMT_UYVY422:
487 picture->linesize[0] = width * 2;
488 break;
489 case PIX_FMT_UYYVYY411:
490 picture->linesize[0] = width + width/2;
491 break;
492 case PIX_FMT_RGB8:
493 case PIX_FMT_BGR8:
494 case PIX_FMT_RGB4_BYTE:
495 case PIX_FMT_BGR4_BYTE:
496 case PIX_FMT_GRAY8:
497 picture->linesize[0] = width;
498 break;
499 case PIX_FMT_RGB4:
500 case PIX_FMT_BGR4:
501 picture->linesize[0] = width / 2;
502 break;
503 case PIX_FMT_MONOWHITE:
504 case PIX_FMT_MONOBLACK:
505 picture->linesize[0] = (width + 7) >> 3;
506 break;
507 case PIX_FMT_PAL8:
508 picture->linesize[0] = width;
509 picture->linesize[1] = 4;
510 break;
511 default:
512 return -1;
514 return 0;
517 int ff_fill_pointer(AVPicture *picture, uint8_t *ptr, int pix_fmt,
518 int height)
520 int size, h2, size2;
521 const PixFmtInfo *pinfo;
523 pinfo = &pix_fmt_info[pix_fmt];
524 size = picture->linesize[0] * height;
525 switch(pix_fmt) {
526 case PIX_FMT_YUV420P:
527 case PIX_FMT_YUV422P:
528 case PIX_FMT_YUV444P:
529 case PIX_FMT_YUV410P:
530 case PIX_FMT_YUV411P:
531 case PIX_FMT_YUV440P:
532 case PIX_FMT_YUVJ420P:
533 case PIX_FMT_YUVJ422P:
534 case PIX_FMT_YUVJ444P:
535 case PIX_FMT_YUVJ440P:
536 h2 = (height + (1 << pinfo->y_chroma_shift) - 1) >> pinfo->y_chroma_shift;
537 size2 = picture->linesize[1] * h2;
538 picture->data[0] = ptr;
539 picture->data[1] = picture->data[0] + size;
540 picture->data[2] = picture->data[1] + size2;
541 picture->data[3] = NULL;
542 return size + 2 * size2;
543 case PIX_FMT_YUVA420P:
544 h2 = (height + (1 << pinfo->y_chroma_shift) - 1) >> pinfo->y_chroma_shift;
545 size2 = picture->linesize[1] * h2;
546 picture->data[0] = ptr;
547 picture->data[1] = picture->data[0] + size;
548 picture->data[2] = picture->data[1] + size2;
549 picture->data[3] = picture->data[1] + size2 + size2;
550 return 2 * size + 2 * size2;
551 case PIX_FMT_NV12:
552 case PIX_FMT_NV21:
553 h2 = (height + (1 << pinfo->y_chroma_shift) - 1) >> pinfo->y_chroma_shift;
554 size2 = picture->linesize[1] * h2 * 2;
555 picture->data[0] = ptr;
556 picture->data[1] = picture->data[0] + size;
557 picture->data[2] = NULL;
558 picture->data[3] = NULL;
559 return size + 2 * size2;
560 case PIX_FMT_RGB24:
561 case PIX_FMT_BGR24:
562 case PIX_FMT_RGB32:
563 case PIX_FMT_BGR32:
564 case PIX_FMT_RGB32_1:
565 case PIX_FMT_BGR32_1:
566 case PIX_FMT_GRAY16BE:
567 case PIX_FMT_GRAY16LE:
568 case PIX_FMT_BGR555:
569 case PIX_FMT_BGR565:
570 case PIX_FMT_RGB555:
571 case PIX_FMT_RGB565:
572 case PIX_FMT_YUYV422:
573 case PIX_FMT_UYVY422:
574 case PIX_FMT_UYYVYY411:
575 case PIX_FMT_RGB8:
576 case PIX_FMT_BGR8:
577 case PIX_FMT_RGB4_BYTE:
578 case PIX_FMT_BGR4_BYTE:
579 case PIX_FMT_GRAY8:
580 case PIX_FMT_RGB4:
581 case PIX_FMT_BGR4:
582 case PIX_FMT_MONOWHITE:
583 case PIX_FMT_MONOBLACK:
584 picture->data[0] = ptr;
585 picture->data[1] = NULL;
586 picture->data[2] = NULL;
587 picture->data[3] = NULL;
588 return size;
589 case PIX_FMT_PAL8:
590 size2 = (size + 3) & ~3;
591 picture->data[0] = ptr;
592 picture->data[1] = ptr + size2; /* palette is stored here as 256 32 bit words */
593 picture->data[2] = NULL;
594 picture->data[3] = NULL;
595 return size2 + 256 * 4;
596 default:
597 picture->data[0] = NULL;
598 picture->data[1] = NULL;
599 picture->data[2] = NULL;
600 picture->data[3] = NULL;
601 return -1;
605 int avpicture_fill(AVPicture *picture, uint8_t *ptr,
606 int pix_fmt, int width, int height)
609 if(avcodec_check_dimensions(NULL, width, height))
610 return -1;
612 if (ff_fill_linesize(picture, pix_fmt, width))
613 return -1;
615 return ff_fill_pointer(picture, ptr, pix_fmt, height);
618 int avpicture_layout(const AVPicture* src, int pix_fmt, int width, int height,
619 unsigned char *dest, int dest_size)
621 const PixFmtInfo* pf = &pix_fmt_info[pix_fmt];
622 int i, j, w, h, data_planes;
623 const unsigned char* s;
624 int size = avpicture_get_size(pix_fmt, width, height);
626 if (size > dest_size || size < 0)
627 return -1;
629 if (pf->pixel_type == FF_PIXEL_PACKED || pf->pixel_type == FF_PIXEL_PALETTE) {
630 if (pix_fmt == PIX_FMT_YUYV422 ||
631 pix_fmt == PIX_FMT_UYVY422 ||
632 pix_fmt == PIX_FMT_BGR565 ||
633 pix_fmt == PIX_FMT_BGR555 ||
634 pix_fmt == PIX_FMT_RGB565 ||
635 pix_fmt == PIX_FMT_RGB555)
636 w = width * 2;
637 else if (pix_fmt == PIX_FMT_UYYVYY411)
638 w = width + width/2;
639 else if (pix_fmt == PIX_FMT_PAL8)
640 w = width;
641 else
642 w = width * (pf->depth * pf->nb_channels / 8);
644 data_planes = 1;
645 h = height;
646 } else {
647 data_planes = pf->nb_channels;
648 w = (width*pf->depth + 7)/8;
649 h = height;
652 for (i=0; i<data_planes; i++) {
653 if (i == 1) {
654 w = width >> pf->x_chroma_shift;
655 h = height >> pf->y_chroma_shift;
657 s = src->data[i];
658 for(j=0; j<h; j++) {
659 memcpy(dest, s, w);
660 dest += w;
661 s += src->linesize[i];
665 if (pf->pixel_type == FF_PIXEL_PALETTE)
666 memcpy((unsigned char *)(((size_t)dest + 3) & ~3), src->data[1], 256 * 4);
668 return size;
671 int avpicture_get_size(int pix_fmt, int width, int height)
673 AVPicture dummy_pict;
674 return avpicture_fill(&dummy_pict, NULL, pix_fmt, width, height);
677 int avcodec_get_pix_fmt_loss(int dst_pix_fmt, int src_pix_fmt,
678 int has_alpha)
680 const PixFmtInfo *pf, *ps;
681 int loss;
683 ps = &pix_fmt_info[src_pix_fmt];
684 pf = &pix_fmt_info[dst_pix_fmt];
686 /* compute loss */
687 loss = 0;
688 pf = &pix_fmt_info[dst_pix_fmt];
689 if (pf->depth < ps->depth ||
690 (dst_pix_fmt == PIX_FMT_RGB555 && src_pix_fmt == PIX_FMT_RGB565))
691 loss |= FF_LOSS_DEPTH;
692 if (pf->x_chroma_shift > ps->x_chroma_shift ||
693 pf->y_chroma_shift > ps->y_chroma_shift)
694 loss |= FF_LOSS_RESOLUTION;
695 switch(pf->color_type) {
696 case FF_COLOR_RGB:
697 if (ps->color_type != FF_COLOR_RGB &&
698 ps->color_type != FF_COLOR_GRAY)
699 loss |= FF_LOSS_COLORSPACE;
700 break;
701 case FF_COLOR_GRAY:
702 if (ps->color_type != FF_COLOR_GRAY)
703 loss |= FF_LOSS_COLORSPACE;
704 break;
705 case FF_COLOR_YUV:
706 if (ps->color_type != FF_COLOR_YUV)
707 loss |= FF_LOSS_COLORSPACE;
708 break;
709 case FF_COLOR_YUV_JPEG:
710 if (ps->color_type != FF_COLOR_YUV_JPEG &&
711 ps->color_type != FF_COLOR_YUV &&
712 ps->color_type != FF_COLOR_GRAY)
713 loss |= FF_LOSS_COLORSPACE;
714 break;
715 default:
716 /* fail safe test */
717 if (ps->color_type != pf->color_type)
718 loss |= FF_LOSS_COLORSPACE;
719 break;
721 if (pf->color_type == FF_COLOR_GRAY &&
722 ps->color_type != FF_COLOR_GRAY)
723 loss |= FF_LOSS_CHROMA;
724 if (!pf->is_alpha && (ps->is_alpha && has_alpha))
725 loss |= FF_LOSS_ALPHA;
726 if (pf->pixel_type == FF_PIXEL_PALETTE &&
727 (ps->pixel_type != FF_PIXEL_PALETTE && ps->color_type != FF_COLOR_GRAY))
728 loss |= FF_LOSS_COLORQUANT;
729 return loss;
732 static int avg_bits_per_pixel(int pix_fmt)
734 int bits;
735 const PixFmtInfo *pf;
737 pf = &pix_fmt_info[pix_fmt];
738 switch(pf->pixel_type) {
739 case FF_PIXEL_PACKED:
740 switch(pix_fmt) {
741 case PIX_FMT_YUYV422:
742 case PIX_FMT_UYVY422:
743 case PIX_FMT_RGB565:
744 case PIX_FMT_RGB555:
745 case PIX_FMT_BGR565:
746 case PIX_FMT_BGR555:
747 bits = 16;
748 break;
749 case PIX_FMT_UYYVYY411:
750 bits = 12;
751 break;
752 default:
753 bits = pf->depth * pf->nb_channels;
754 break;
756 break;
757 case FF_PIXEL_PLANAR:
758 if (pf->x_chroma_shift == 0 && pf->y_chroma_shift == 0) {
759 bits = pf->depth * pf->nb_channels;
760 } else {
761 bits = pf->depth + ((2 * pf->depth) >>
762 (pf->x_chroma_shift + pf->y_chroma_shift));
764 break;
765 case FF_PIXEL_PALETTE:
766 bits = 8;
767 break;
768 default:
769 bits = -1;
770 break;
772 return bits;
775 static int avcodec_find_best_pix_fmt1(int pix_fmt_mask,
776 int src_pix_fmt,
777 int has_alpha,
778 int loss_mask)
780 int dist, i, loss, min_dist, dst_pix_fmt;
782 /* find exact color match with smallest size */
783 dst_pix_fmt = -1;
784 min_dist = 0x7fffffff;
785 for(i = 0;i < PIX_FMT_NB; i++) {
786 if (pix_fmt_mask & (1 << i)) {
787 loss = avcodec_get_pix_fmt_loss(i, src_pix_fmt, has_alpha) & loss_mask;
788 if (loss == 0) {
789 dist = avg_bits_per_pixel(i);
790 if (dist < min_dist) {
791 min_dist = dist;
792 dst_pix_fmt = i;
797 return dst_pix_fmt;
800 int avcodec_find_best_pix_fmt(int pix_fmt_mask, int src_pix_fmt,
801 int has_alpha, int *loss_ptr)
803 int dst_pix_fmt, loss_mask, i;
804 static const int loss_mask_order[] = {
805 ~0, /* no loss first */
806 ~FF_LOSS_ALPHA,
807 ~FF_LOSS_RESOLUTION,
808 ~(FF_LOSS_COLORSPACE | FF_LOSS_RESOLUTION),
809 ~FF_LOSS_COLORQUANT,
810 ~FF_LOSS_DEPTH,
814 /* try with successive loss */
815 i = 0;
816 for(;;) {
817 loss_mask = loss_mask_order[i++];
818 dst_pix_fmt = avcodec_find_best_pix_fmt1(pix_fmt_mask, src_pix_fmt,
819 has_alpha, loss_mask);
820 if (dst_pix_fmt >= 0)
821 goto found;
822 if (loss_mask == 0)
823 break;
825 return -1;
826 found:
827 if (loss_ptr)
828 *loss_ptr = avcodec_get_pix_fmt_loss(dst_pix_fmt, src_pix_fmt, has_alpha);
829 return dst_pix_fmt;
832 void ff_img_copy_plane(uint8_t *dst, int dst_wrap,
833 const uint8_t *src, int src_wrap,
834 int width, int height)
836 if((!dst) || (!src))
837 return;
838 for(;height > 0; height--) {
839 memcpy(dst, src, width);
840 dst += dst_wrap;
841 src += src_wrap;
845 int ff_get_plane_bytewidth(enum PixelFormat pix_fmt, int width, int plane)
847 int bits;
848 const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
850 pf = &pix_fmt_info[pix_fmt];
851 switch(pf->pixel_type) {
852 case FF_PIXEL_PACKED:
853 switch(pix_fmt) {
854 case PIX_FMT_YUYV422:
855 case PIX_FMT_UYVY422:
856 case PIX_FMT_RGB565:
857 case PIX_FMT_RGB555:
858 case PIX_FMT_BGR565:
859 case PIX_FMT_BGR555:
860 bits = 16;
861 break;
862 case PIX_FMT_UYYVYY411:
863 bits = 12;
864 break;
865 default:
866 bits = pf->depth * pf->nb_channels;
867 break;
869 return (width * bits + 7) >> 3;
870 break;
871 case FF_PIXEL_PLANAR:
872 if (plane == 1 || plane == 2)
873 width >>= pf->x_chroma_shift;
875 return (width * pf->depth + 7) >> 3;
876 break;
877 case FF_PIXEL_PALETTE:
878 if (plane == 0)
879 return width;
880 break;
883 return -1;
886 void av_picture_copy(AVPicture *dst, const AVPicture *src,
887 int pix_fmt, int width, int height)
889 int i;
890 const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
892 pf = &pix_fmt_info[pix_fmt];
893 switch(pf->pixel_type) {
894 case FF_PIXEL_PACKED:
895 case FF_PIXEL_PLANAR:
896 for(i = 0; i < pf->nb_channels; i++) {
897 int w, h;
898 int bwidth = ff_get_plane_bytewidth(pix_fmt, width, i);
899 w = width;
900 h = height;
901 if (i == 1 || i == 2) {
902 w >>= pf->x_chroma_shift;
903 h >>= pf->y_chroma_shift;
905 ff_img_copy_plane(dst->data[i], dst->linesize[i],
906 src->data[i], src->linesize[i],
907 bwidth, h);
909 break;
910 case FF_PIXEL_PALETTE:
911 ff_img_copy_plane(dst->data[0], dst->linesize[0],
912 src->data[0], src->linesize[0],
913 width, height);
914 /* copy the palette */
915 ff_img_copy_plane(dst->data[1], dst->linesize[1],
916 src->data[1], src->linesize[1],
917 4, 256);
918 break;
922 /* XXX: totally non optimized */
924 static void yuyv422_to_yuv420p(AVPicture *dst, const AVPicture *src,
925 int width, int height)
927 const uint8_t *p, *p1;
928 uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;
929 int w;
931 p1 = src->data[0];
932 lum1 = dst->data[0];
933 cb1 = dst->data[1];
934 cr1 = dst->data[2];
936 for(;height >= 1; height -= 2) {
937 p = p1;
938 lum = lum1;
939 cb = cb1;
940 cr = cr1;
941 for(w = width; w >= 2; w -= 2) {
942 lum[0] = p[0];
943 cb[0] = p[1];
944 lum[1] = p[2];
945 cr[0] = p[3];
946 p += 4;
947 lum += 2;
948 cb++;
949 cr++;
951 if (w) {
952 lum[0] = p[0];
953 cb[0] = p[1];
954 cr[0] = p[3];
955 cb++;
956 cr++;
958 p1 += src->linesize[0];
959 lum1 += dst->linesize[0];
960 if (height>1) {
961 p = p1;
962 lum = lum1;
963 for(w = width; w >= 2; w -= 2) {
964 lum[0] = p[0];
965 lum[1] = p[2];
966 p += 4;
967 lum += 2;
969 if (w) {
970 lum[0] = p[0];
972 p1 += src->linesize[0];
973 lum1 += dst->linesize[0];
975 cb1 += dst->linesize[1];
976 cr1 += dst->linesize[2];
980 static void uyvy422_to_yuv420p(AVPicture *dst, const AVPicture *src,
981 int width, int height)
983 const uint8_t *p, *p1;
984 uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;
985 int w;
987 p1 = src->data[0];
989 lum1 = dst->data[0];
990 cb1 = dst->data[1];
991 cr1 = dst->data[2];
993 for(;height >= 1; height -= 2) {
994 p = p1;
995 lum = lum1;
996 cb = cb1;
997 cr = cr1;
998 for(w = width; w >= 2; w -= 2) {
999 lum[0] = p[1];
1000 cb[0] = p[0];
1001 lum[1] = p[3];
1002 cr[0] = p[2];
1003 p += 4;
1004 lum += 2;
1005 cb++;
1006 cr++;
1008 if (w) {
1009 lum[0] = p[1];
1010 cb[0] = p[0];
1011 cr[0] = p[2];
1012 cb++;
1013 cr++;
1015 p1 += src->linesize[0];
1016 lum1 += dst->linesize[0];
1017 if (height>1) {
1018 p = p1;
1019 lum = lum1;
1020 for(w = width; w >= 2; w -= 2) {
1021 lum[0] = p[1];
1022 lum[1] = p[3];
1023 p += 4;
1024 lum += 2;
1026 if (w) {
1027 lum[0] = p[1];
1029 p1 += src->linesize[0];
1030 lum1 += dst->linesize[0];
1032 cb1 += dst->linesize[1];
1033 cr1 += dst->linesize[2];
1038 static void uyvy422_to_yuv422p(AVPicture *dst, const AVPicture *src,
1039 int width, int height)
1041 const uint8_t *p, *p1;
1042 uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;
1043 int w;
1045 p1 = src->data[0];
1046 lum1 = dst->data[0];
1047 cb1 = dst->data[1];
1048 cr1 = dst->data[2];
1049 for(;height > 0; height--) {
1050 p = p1;
1051 lum = lum1;
1052 cb = cb1;
1053 cr = cr1;
1054 for(w = width; w >= 2; w -= 2) {
1055 lum[0] = p[1];
1056 cb[0] = p[0];
1057 lum[1] = p[3];
1058 cr[0] = p[2];
1059 p += 4;
1060 lum += 2;
1061 cb++;
1062 cr++;
1064 p1 += src->linesize[0];
1065 lum1 += dst->linesize[0];
1066 cb1 += dst->linesize[1];
1067 cr1 += dst->linesize[2];
1072 static void yuyv422_to_yuv422p(AVPicture *dst, const AVPicture *src,
1073 int width, int height)
1075 const uint8_t *p, *p1;
1076 uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;
1077 int w;
1079 p1 = src->data[0];
1080 lum1 = dst->data[0];
1081 cb1 = dst->data[1];
1082 cr1 = dst->data[2];
1083 for(;height > 0; height--) {
1084 p = p1;
1085 lum = lum1;
1086 cb = cb1;
1087 cr = cr1;
1088 for(w = width; w >= 2; w -= 2) {
1089 lum[0] = p[0];
1090 cb[0] = p[1];
1091 lum[1] = p[2];
1092 cr[0] = p[3];
1093 p += 4;
1094 lum += 2;
1095 cb++;
1096 cr++;
1098 p1 += src->linesize[0];
1099 lum1 += dst->linesize[0];
1100 cb1 += dst->linesize[1];
1101 cr1 += dst->linesize[2];
1105 static void yuv422p_to_yuyv422(AVPicture *dst, const AVPicture *src,
1106 int width, int height)
1108 uint8_t *p, *p1;
1109 const uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;
1110 int w;
1112 p1 = dst->data[0];
1113 lum1 = src->data[0];
1114 cb1 = src->data[1];
1115 cr1 = src->data[2];
1116 for(;height > 0; height--) {
1117 p = p1;
1118 lum = lum1;
1119 cb = cb1;
1120 cr = cr1;
1121 for(w = width; w >= 2; w -= 2) {
1122 p[0] = lum[0];
1123 p[1] = cb[0];
1124 p[2] = lum[1];
1125 p[3] = cr[0];
1126 p += 4;
1127 lum += 2;
1128 cb++;
1129 cr++;
1131 p1 += dst->linesize[0];
1132 lum1 += src->linesize[0];
1133 cb1 += src->linesize[1];
1134 cr1 += src->linesize[2];
1138 static void yuv422p_to_uyvy422(AVPicture *dst, const AVPicture *src,
1139 int width, int height)
1141 uint8_t *p, *p1;
1142 const uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;
1143 int w;
1145 p1 = dst->data[0];
1146 lum1 = src->data[0];
1147 cb1 = src->data[1];
1148 cr1 = src->data[2];
1149 for(;height > 0; height--) {
1150 p = p1;
1151 lum = lum1;
1152 cb = cb1;
1153 cr = cr1;
1154 for(w = width; w >= 2; w -= 2) {
1155 p[1] = lum[0];
1156 p[0] = cb[0];
1157 p[3] = lum[1];
1158 p[2] = cr[0];
1159 p += 4;
1160 lum += 2;
1161 cb++;
1162 cr++;
1164 p1 += dst->linesize[0];
1165 lum1 += src->linesize[0];
1166 cb1 += src->linesize[1];
1167 cr1 += src->linesize[2];
1171 static void uyyvyy411_to_yuv411p(AVPicture *dst, const AVPicture *src,
1172 int width, int height)
1174 const uint8_t *p, *p1;
1175 uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;
1176 int w;
1178 p1 = src->data[0];
1179 lum1 = dst->data[0];
1180 cb1 = dst->data[1];
1181 cr1 = dst->data[2];
1182 for(;height > 0; height--) {
1183 p = p1;
1184 lum = lum1;
1185 cb = cb1;
1186 cr = cr1;
1187 for(w = width; w >= 4; w -= 4) {
1188 cb[0] = p[0];
1189 lum[0] = p[1];
1190 lum[1] = p[2];
1191 cr[0] = p[3];
1192 lum[2] = p[4];
1193 lum[3] = p[5];
1194 p += 6;
1195 lum += 4;
1196 cb++;
1197 cr++;
1199 p1 += src->linesize[0];
1200 lum1 += dst->linesize[0];
1201 cb1 += dst->linesize[1];
1202 cr1 += dst->linesize[2];
1207 static void yuv420p_to_yuyv422(AVPicture *dst, const AVPicture *src,
1208 int width, int height)
1210 int w, h;
1211 uint8_t *line1, *line2, *linesrc = dst->data[0];
1212 uint8_t *lum1, *lum2, *lumsrc = src->data[0];
1213 uint8_t *cb1, *cb2 = src->data[1];
1214 uint8_t *cr1, *cr2 = src->data[2];
1216 for(h = height / 2; h--;) {
1217 line1 = linesrc;
1218 line2 = linesrc + dst->linesize[0];
1220 lum1 = lumsrc;
1221 lum2 = lumsrc + src->linesize[0];
1223 cb1 = cb2;
1224 cr1 = cr2;
1226 for(w = width / 2; w--;) {
1227 *line1++ = *lum1++; *line2++ = *lum2++;
1228 *line1++ = *line2++ = *cb1++;
1229 *line1++ = *lum1++; *line2++ = *lum2++;
1230 *line1++ = *line2++ = *cr1++;
1233 linesrc += dst->linesize[0] * 2;
1234 lumsrc += src->linesize[0] * 2;
1235 cb2 += src->linesize[1];
1236 cr2 += src->linesize[2];
1240 static void yuv420p_to_uyvy422(AVPicture *dst, const AVPicture *src,
1241 int width, int height)
1243 int w, h;
1244 uint8_t *line1, *line2, *linesrc = dst->data[0];
1245 uint8_t *lum1, *lum2, *lumsrc = src->data[0];
1246 uint8_t *cb1, *cb2 = src->data[1];
1247 uint8_t *cr1, *cr2 = src->data[2];
1249 for(h = height / 2; h--;) {
1250 line1 = linesrc;
1251 line2 = linesrc + dst->linesize[0];
1253 lum1 = lumsrc;
1254 lum2 = lumsrc + src->linesize[0];
1256 cb1 = cb2;
1257 cr1 = cr2;
1259 for(w = width / 2; w--;) {
1260 *line1++ = *line2++ = *cb1++;
1261 *line1++ = *lum1++; *line2++ = *lum2++;
1262 *line1++ = *line2++ = *cr1++;
1263 *line1++ = *lum1++; *line2++ = *lum2++;
1266 linesrc += dst->linesize[0] * 2;
1267 lumsrc += src->linesize[0] * 2;
1268 cb2 += src->linesize[1];
1269 cr2 += src->linesize[2];
1273 /* 2x2 -> 1x1 */
1274 void ff_shrink22(uint8_t *dst, int dst_wrap,
1275 const uint8_t *src, int src_wrap,
1276 int width, int height)
1278 int w;
1279 const uint8_t *s1, *s2;
1280 uint8_t *d;
1282 for(;height > 0; height--) {
1283 s1 = src;
1284 s2 = s1 + src_wrap;
1285 d = dst;
1286 for(w = width;w >= 4; w-=4) {
1287 d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
1288 d[1] = (s1[2] + s1[3] + s2[2] + s2[3] + 2) >> 2;
1289 d[2] = (s1[4] + s1[5] + s2[4] + s2[5] + 2) >> 2;
1290 d[3] = (s1[6] + s1[7] + s2[6] + s2[7] + 2) >> 2;
1291 s1 += 8;
1292 s2 += 8;
1293 d += 4;
1295 for(;w > 0; w--) {
1296 d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
1297 s1 += 2;
1298 s2 += 2;
1299 d++;
1301 src += 2 * src_wrap;
1302 dst += dst_wrap;
1306 /* 4x4 -> 1x1 */
1307 void ff_shrink44(uint8_t *dst, int dst_wrap,
1308 const uint8_t *src, int src_wrap,
1309 int width, int height)
1311 int w;
1312 const uint8_t *s1, *s2, *s3, *s4;
1313 uint8_t *d;
1315 for(;height > 0; height--) {
1316 s1 = src;
1317 s2 = s1 + src_wrap;
1318 s3 = s2 + src_wrap;
1319 s4 = s3 + src_wrap;
1320 d = dst;
1321 for(w = width;w > 0; w--) {
1322 d[0] = (s1[0] + s1[1] + s1[2] + s1[3] +
1323 s2[0] + s2[1] + s2[2] + s2[3] +
1324 s3[0] + s3[1] + s3[2] + s3[3] +
1325 s4[0] + s4[1] + s4[2] + s4[3] + 8) >> 4;
1326 s1 += 4;
1327 s2 += 4;
1328 s3 += 4;
1329 s4 += 4;
1330 d++;
1332 src += 4 * src_wrap;
1333 dst += dst_wrap;
1337 /* 8x8 -> 1x1 */
1338 void ff_shrink88(uint8_t *dst, int dst_wrap,
1339 const uint8_t *src, int src_wrap,
1340 int width, int height)
1342 int w, i;
1344 for(;height > 0; height--) {
1345 for(w = width;w > 0; w--) {
1346 int tmp=0;
1347 for(i=0; i<8; i++){
1348 tmp += src[0] + src[1] + src[2] + src[3] + src[4] + src[5] + src[6] + src[7];
1349 src += src_wrap;
1351 *(dst++) = (tmp + 32)>>6;
1352 src += 8 - 8*src_wrap;
1354 src += 8*src_wrap - 8*width;
1355 dst += dst_wrap - width;
1359 /* XXX: add jpeg quantize code */
1361 #define TRANSP_INDEX (6*6*6)
1363 /* this is maybe slow, but allows for extensions */
1364 static inline unsigned char gif_clut_index(uint8_t r, uint8_t g, uint8_t b)
1366 return (((r) / 47) % 6) * 6 * 6 + (((g) / 47) % 6) * 6 + (((b) / 47) % 6);
1369 static void build_rgb_palette(uint8_t *palette, int has_alpha)
1371 uint32_t *pal;
1372 static const uint8_t pal_value[6] = { 0x00, 0x33, 0x66, 0x99, 0xcc, 0xff };
1373 int i, r, g, b;
1375 pal = (uint32_t *)palette;
1376 i = 0;
1377 for(r = 0; r < 6; r++) {
1378 for(g = 0; g < 6; g++) {
1379 for(b = 0; b < 6; b++) {
1380 pal[i++] = (0xff << 24) | (pal_value[r] << 16) |
1381 (pal_value[g] << 8) | pal_value[b];
1385 if (has_alpha)
1386 pal[i++] = 0;
1387 while (i < 256)
1388 pal[i++] = 0xff000000;
1391 /* copy bit n to bits 0 ... n - 1 */
1392 static inline unsigned int bitcopy_n(unsigned int a, int n)
1394 int mask;
1395 mask = (1 << n) - 1;
1396 return (a & (0xff & ~mask)) | ((-((a >> n) & 1)) & mask);
1399 /* rgb555 handling */
1401 #define RGB_NAME rgb555
1403 #define RGB_IN(r, g, b, s)\
1405 unsigned int v = ((const uint16_t *)(s))[0];\
1406 r = bitcopy_n(v >> (10 - 3), 3);\
1407 g = bitcopy_n(v >> (5 - 3), 3);\
1408 b = bitcopy_n(v << 3, 3);\
1412 #define RGB_OUT(d, r, g, b)\
1414 ((uint16_t *)(d))[0] = ((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3);\
1417 #define BPP 2
1419 #include "imgconvert_template.h"
1421 /* rgb565 handling */
1423 #define RGB_NAME rgb565
1425 #define RGB_IN(r, g, b, s)\
1427 unsigned int v = ((const uint16_t *)(s))[0];\
1428 r = bitcopy_n(v >> (11 - 3), 3);\
1429 g = bitcopy_n(v >> (5 - 2), 2);\
1430 b = bitcopy_n(v << 3, 3);\
1433 #define RGB_OUT(d, r, g, b)\
1435 ((uint16_t *)(d))[0] = ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3);\
1438 #define BPP 2
1440 #include "imgconvert_template.h"
1442 /* bgr24 handling */
1444 #define RGB_NAME bgr24
1446 #define RGB_IN(r, g, b, s)\
1448 b = (s)[0];\
1449 g = (s)[1];\
1450 r = (s)[2];\
1453 #define RGB_OUT(d, r, g, b)\
1455 (d)[0] = b;\
1456 (d)[1] = g;\
1457 (d)[2] = r;\
1460 #define BPP 3
1462 #include "imgconvert_template.h"
1464 #undef RGB_IN
1465 #undef RGB_OUT
1466 #undef BPP
1468 /* rgb24 handling */
1470 #define RGB_NAME rgb24
1471 #define FMT_RGB24
1473 #define RGB_IN(r, g, b, s)\
1475 r = (s)[0];\
1476 g = (s)[1];\
1477 b = (s)[2];\
1480 #define RGB_OUT(d, r, g, b)\
1482 (d)[0] = r;\
1483 (d)[1] = g;\
1484 (d)[2] = b;\
1487 #define BPP 3
1489 #include "imgconvert_template.h"
1491 /* rgb32 handling */
1493 #define RGB_NAME rgb32
1494 #define FMT_RGB32
1496 #define RGB_IN(r, g, b, s)\
1498 unsigned int v = ((const uint32_t *)(s))[0];\
1499 r = (v >> 16) & 0xff;\
1500 g = (v >> 8) & 0xff;\
1501 b = v & 0xff;\
1504 #define RGBA_IN(r, g, b, a, s)\
1506 unsigned int v = ((const uint32_t *)(s))[0];\
1507 a = (v >> 24) & 0xff;\
1508 r = (v >> 16) & 0xff;\
1509 g = (v >> 8) & 0xff;\
1510 b = v & 0xff;\
1513 #define RGBA_OUT(d, r, g, b, a)\
1515 ((uint32_t *)(d))[0] = (a << 24) | (r << 16) | (g << 8) | b;\
1518 #define BPP 4
1520 #include "imgconvert_template.h"
1522 static void mono_to_gray(AVPicture *dst, const AVPicture *src,
1523 int width, int height, int xor_mask)
1525 const unsigned char *p;
1526 unsigned char *q;
1527 int v, dst_wrap, src_wrap;
1528 int y, w;
1530 p = src->data[0];
1531 src_wrap = src->linesize[0] - ((width + 7) >> 3);
1533 q = dst->data[0];
1534 dst_wrap = dst->linesize[0] - width;
1535 for(y=0;y<height;y++) {
1536 w = width;
1537 while (w >= 8) {
1538 v = *p++ ^ xor_mask;
1539 q[0] = -(v >> 7);
1540 q[1] = -((v >> 6) & 1);
1541 q[2] = -((v >> 5) & 1);
1542 q[3] = -((v >> 4) & 1);
1543 q[4] = -((v >> 3) & 1);
1544 q[5] = -((v >> 2) & 1);
1545 q[6] = -((v >> 1) & 1);
1546 q[7] = -((v >> 0) & 1);
1547 w -= 8;
1548 q += 8;
1550 if (w > 0) {
1551 v = *p++ ^ xor_mask;
1552 do {
1553 q[0] = -((v >> 7) & 1);
1554 q++;
1555 v <<= 1;
1556 } while (--w);
1558 p += src_wrap;
1559 q += dst_wrap;
1563 static void monowhite_to_gray(AVPicture *dst, const AVPicture *src,
1564 int width, int height)
1566 mono_to_gray(dst, src, width, height, 0xff);
1569 static void monoblack_to_gray(AVPicture *dst, const AVPicture *src,
1570 int width, int height)
1572 mono_to_gray(dst, src, width, height, 0x00);
1575 static void gray_to_mono(AVPicture *dst, const AVPicture *src,
1576 int width, int height, int xor_mask)
1578 int n;
1579 const uint8_t *s;
1580 uint8_t *d;
1581 int j, b, v, n1, src_wrap, dst_wrap, y;
1583 s = src->data[0];
1584 src_wrap = src->linesize[0] - width;
1586 d = dst->data[0];
1587 dst_wrap = dst->linesize[0] - ((width + 7) >> 3);
1589 for(y=0;y<height;y++) {
1590 n = width;
1591 while (n >= 8) {
1592 v = 0;
1593 for(j=0;j<8;j++) {
1594 b = s[0];
1595 s++;
1596 v = (v << 1) | (b >> 7);
1598 d[0] = v ^ xor_mask;
1599 d++;
1600 n -= 8;
1602 if (n > 0) {
1603 n1 = n;
1604 v = 0;
1605 while (n > 0) {
1606 b = s[0];
1607 s++;
1608 v = (v << 1) | (b >> 7);
1609 n--;
1611 d[0] = (v << (8 - (n1 & 7))) ^ xor_mask;
1612 d++;
1614 s += src_wrap;
1615 d += dst_wrap;
1619 static void gray_to_monowhite(AVPicture *dst, const AVPicture *src,
1620 int width, int height)
1622 gray_to_mono(dst, src, width, height, 0xff);
1625 static void gray_to_monoblack(AVPicture *dst, const AVPicture *src,
1626 int width, int height)
1628 gray_to_mono(dst, src, width, height, 0x00);
1631 static void gray_to_gray16(AVPicture *dst, const AVPicture *src,
1632 int width, int height)
1634 int x, y, src_wrap, dst_wrap;
1635 uint8_t *s, *d;
1636 s = src->data[0];
1637 src_wrap = src->linesize[0] - width;
1638 d = dst->data[0];
1639 dst_wrap = dst->linesize[0] - width * 2;
1640 for(y=0; y<height; y++){
1641 for(x=0; x<width; x++){
1642 *d++ = *s;
1643 *d++ = *s++;
1645 s += src_wrap;
1646 d += dst_wrap;
1650 static void gray16_to_gray(AVPicture *dst, const AVPicture *src,
1651 int width, int height)
1653 int x, y, src_wrap, dst_wrap;
1654 uint8_t *s, *d;
1655 s = src->data[0];
1656 src_wrap = src->linesize[0] - width * 2;
1657 d = dst->data[0];
1658 dst_wrap = dst->linesize[0] - width;
1659 for(y=0; y<height; y++){
1660 for(x=0; x<width; x++){
1661 *d++ = *s;
1662 s += 2;
1664 s += src_wrap;
1665 d += dst_wrap;
1669 static void gray16be_to_gray(AVPicture *dst, const AVPicture *src,
1670 int width, int height)
1672 gray16_to_gray(dst, src, width, height);
1675 static void gray16le_to_gray(AVPicture *dst, const AVPicture *src,
1676 int width, int height)
1678 AVPicture tmpsrc = *src;
1679 tmpsrc.data[0]++;
1680 gray16_to_gray(dst, &tmpsrc, width, height);
1683 static void gray16_to_gray16(AVPicture *dst, const AVPicture *src,
1684 int width, int height)
1686 int x, y, src_wrap, dst_wrap;
1687 uint16_t *s, *d;
1688 s = (uint16_t*)src->data[0];
1689 src_wrap = (src->linesize[0] - width * 2)/2;
1690 d = (uint16_t*)dst->data[0];
1691 dst_wrap = (dst->linesize[0] - width * 2)/2;
1692 for(y=0; y<height; y++){
1693 for(x=0; x<width; x++){
1694 *d++ = bswap_16(*s++);
1696 s += src_wrap;
1697 d += dst_wrap;
1702 typedef struct ConvertEntry {
1703 void (*convert)(AVPicture *dst,
1704 const AVPicture *src, int width, int height);
1705 } ConvertEntry;
1707 /* Add each new conversion function in this table. In order to be able
1708 to convert from any format to any format, the following constraints
1709 must be satisfied:
1711 - all FF_COLOR_RGB formats must convert to and from PIX_FMT_RGB24
1713 - all FF_COLOR_GRAY formats must convert to and from PIX_FMT_GRAY8
1715 - all FF_COLOR_RGB formats with alpha must convert to and from PIX_FMT_RGB32
1717 - PIX_FMT_YUV444P and PIX_FMT_YUVJ444P must convert to and from
1718 PIX_FMT_RGB24.
1720 - PIX_FMT_422 must convert to and from PIX_FMT_422P.
1722 The other conversion functions are just optimizations for common cases.
1724 static const ConvertEntry convert_table[PIX_FMT_NB][PIX_FMT_NB] = {
1725 [PIX_FMT_YUV420P] = {
1726 [PIX_FMT_YUYV422] = {
1727 .convert = yuv420p_to_yuyv422,
1729 [PIX_FMT_RGB555] = {
1730 .convert = yuv420p_to_rgb555
1732 [PIX_FMT_RGB565] = {
1733 .convert = yuv420p_to_rgb565
1735 [PIX_FMT_BGR24] = {
1736 .convert = yuv420p_to_bgr24
1738 [PIX_FMT_RGB24] = {
1739 .convert = yuv420p_to_rgb24
1741 [PIX_FMT_RGB32] = {
1742 .convert = yuv420p_to_rgb32
1744 [PIX_FMT_UYVY422] = {
1745 .convert = yuv420p_to_uyvy422,
1748 [PIX_FMT_YUV422P] = {
1749 [PIX_FMT_YUYV422] = {
1750 .convert = yuv422p_to_yuyv422,
1752 [PIX_FMT_UYVY422] = {
1753 .convert = yuv422p_to_uyvy422,
1756 [PIX_FMT_YUV444P] = {
1757 [PIX_FMT_RGB24] = {
1758 .convert = yuv444p_to_rgb24
1761 [PIX_FMT_YUVJ420P] = {
1762 [PIX_FMT_RGB555] = {
1763 .convert = yuvj420p_to_rgb555
1765 [PIX_FMT_RGB565] = {
1766 .convert = yuvj420p_to_rgb565
1768 [PIX_FMT_BGR24] = {
1769 .convert = yuvj420p_to_bgr24
1771 [PIX_FMT_RGB24] = {
1772 .convert = yuvj420p_to_rgb24
1774 [PIX_FMT_RGB32] = {
1775 .convert = yuvj420p_to_rgb32
1778 [PIX_FMT_YUVJ444P] = {
1779 [PIX_FMT_RGB24] = {
1780 .convert = yuvj444p_to_rgb24
1783 [PIX_FMT_YUYV422] = {
1784 [PIX_FMT_YUV420P] = {
1785 .convert = yuyv422_to_yuv420p,
1787 [PIX_FMT_YUV422P] = {
1788 .convert = yuyv422_to_yuv422p,
1791 [PIX_FMT_UYVY422] = {
1792 [PIX_FMT_YUV420P] = {
1793 .convert = uyvy422_to_yuv420p,
1795 [PIX_FMT_YUV422P] = {
1796 .convert = uyvy422_to_yuv422p,
1799 [PIX_FMT_RGB24] = {
1800 [PIX_FMT_YUV420P] = {
1801 .convert = rgb24_to_yuv420p
1803 [PIX_FMT_RGB565] = {
1804 .convert = rgb24_to_rgb565
1806 [PIX_FMT_RGB555] = {
1807 .convert = rgb24_to_rgb555
1809 [PIX_FMT_RGB32] = {
1810 .convert = rgb24_to_rgb32
1812 [PIX_FMT_BGR24] = {
1813 .convert = rgb24_to_bgr24
1815 [PIX_FMT_GRAY8] = {
1816 .convert = rgb24_to_gray
1818 [PIX_FMT_PAL8] = {
1819 .convert = rgb24_to_pal8
1821 [PIX_FMT_YUV444P] = {
1822 .convert = rgb24_to_yuv444p
1824 [PIX_FMT_YUVJ420P] = {
1825 .convert = rgb24_to_yuvj420p
1827 [PIX_FMT_YUVJ444P] = {
1828 .convert = rgb24_to_yuvj444p
1831 [PIX_FMT_RGB32] = {
1832 [PIX_FMT_RGB24] = {
1833 .convert = rgb32_to_rgb24
1835 [PIX_FMT_BGR24] = {
1836 .convert = rgb32_to_bgr24
1838 [PIX_FMT_RGB565] = {
1839 .convert = rgb32_to_rgb565
1841 [PIX_FMT_RGB555] = {
1842 .convert = rgb32_to_rgb555
1844 [PIX_FMT_PAL8] = {
1845 .convert = rgb32_to_pal8
1847 [PIX_FMT_YUV420P] = {
1848 .convert = rgb32_to_yuv420p
1850 [PIX_FMT_GRAY8] = {
1851 .convert = rgb32_to_gray
1854 [PIX_FMT_BGR24] = {
1855 [PIX_FMT_RGB32] = {
1856 .convert = bgr24_to_rgb32
1858 [PIX_FMT_RGB24] = {
1859 .convert = bgr24_to_rgb24
1861 [PIX_FMT_YUV420P] = {
1862 .convert = bgr24_to_yuv420p
1864 [PIX_FMT_GRAY8] = {
1865 .convert = bgr24_to_gray
1868 [PIX_FMT_RGB555] = {
1869 [PIX_FMT_RGB24] = {
1870 .convert = rgb555_to_rgb24
1872 [PIX_FMT_RGB32] = {
1873 .convert = rgb555_to_rgb32
1875 [PIX_FMT_YUV420P] = {
1876 .convert = rgb555_to_yuv420p
1878 [PIX_FMT_GRAY8] = {
1879 .convert = rgb555_to_gray
1882 [PIX_FMT_RGB565] = {
1883 [PIX_FMT_RGB32] = {
1884 .convert = rgb565_to_rgb32
1886 [PIX_FMT_RGB24] = {
1887 .convert = rgb565_to_rgb24
1889 [PIX_FMT_YUV420P] = {
1890 .convert = rgb565_to_yuv420p
1892 [PIX_FMT_GRAY8] = {
1893 .convert = rgb565_to_gray
1896 [PIX_FMT_GRAY16BE] = {
1897 [PIX_FMT_GRAY8] = {
1898 .convert = gray16be_to_gray
1900 [PIX_FMT_GRAY16LE] = {
1901 .convert = gray16_to_gray16
1904 [PIX_FMT_GRAY16LE] = {
1905 [PIX_FMT_GRAY8] = {
1906 .convert = gray16le_to_gray
1908 [PIX_FMT_GRAY16BE] = {
1909 .convert = gray16_to_gray16
1912 [PIX_FMT_GRAY8] = {
1913 [PIX_FMT_RGB555] = {
1914 .convert = gray_to_rgb555
1916 [PIX_FMT_RGB565] = {
1917 .convert = gray_to_rgb565
1919 [PIX_FMT_RGB24] = {
1920 .convert = gray_to_rgb24
1922 [PIX_FMT_BGR24] = {
1923 .convert = gray_to_bgr24
1925 [PIX_FMT_RGB32] = {
1926 .convert = gray_to_rgb32
1928 [PIX_FMT_MONOWHITE] = {
1929 .convert = gray_to_monowhite
1931 [PIX_FMT_MONOBLACK] = {
1932 .convert = gray_to_monoblack
1934 [PIX_FMT_GRAY16LE] = {
1935 .convert = gray_to_gray16
1937 [PIX_FMT_GRAY16BE] = {
1938 .convert = gray_to_gray16
1941 [PIX_FMT_MONOWHITE] = {
1942 [PIX_FMT_GRAY8] = {
1943 .convert = monowhite_to_gray
1946 [PIX_FMT_MONOBLACK] = {
1947 [PIX_FMT_GRAY8] = {
1948 .convert = monoblack_to_gray
1951 [PIX_FMT_PAL8] = {
1952 [PIX_FMT_RGB555] = {
1953 .convert = pal8_to_rgb555
1955 [PIX_FMT_RGB565] = {
1956 .convert = pal8_to_rgb565
1958 [PIX_FMT_BGR24] = {
1959 .convert = pal8_to_bgr24
1961 [PIX_FMT_RGB24] = {
1962 .convert = pal8_to_rgb24
1964 [PIX_FMT_RGB32] = {
1965 .convert = pal8_to_rgb32
1968 [PIX_FMT_UYYVYY411] = {
1969 [PIX_FMT_YUV411P] = {
1970 .convert = uyyvyy411_to_yuv411p,
1976 int avpicture_alloc(AVPicture *picture,
1977 int pix_fmt, int width, int height)
1979 int size;
1980 void *ptr;
1982 size = avpicture_get_size(pix_fmt, width, height);
1983 if(size<0)
1984 goto fail;
1985 ptr = av_malloc(size);
1986 if (!ptr)
1987 goto fail;
1988 avpicture_fill(picture, ptr, pix_fmt, width, height);
1989 return 0;
1990 fail:
1991 memset(picture, 0, sizeof(AVPicture));
1992 return -1;
1995 void avpicture_free(AVPicture *picture)
1997 av_free(picture->data[0]);
2000 /* return true if yuv planar */
2001 static inline int is_yuv_planar(const PixFmtInfo *ps)
2003 return (ps->color_type == FF_COLOR_YUV ||
2004 ps->color_type == FF_COLOR_YUV_JPEG) &&
2005 ps->pixel_type == FF_PIXEL_PLANAR;
2008 int av_picture_crop(AVPicture *dst, const AVPicture *src,
2009 int pix_fmt, int top_band, int left_band)
2011 int y_shift;
2012 int x_shift;
2014 if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB || !is_yuv_planar(&pix_fmt_info[pix_fmt]))
2015 return -1;
2017 y_shift = pix_fmt_info[pix_fmt].y_chroma_shift;
2018 x_shift = pix_fmt_info[pix_fmt].x_chroma_shift;
2020 dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
2021 dst->data[1] = src->data[1] + ((top_band >> y_shift) * src->linesize[1]) + (left_band >> x_shift);
2022 dst->data[2] = src->data[2] + ((top_band >> y_shift) * src->linesize[2]) + (left_band >> x_shift);
2024 dst->linesize[0] = src->linesize[0];
2025 dst->linesize[1] = src->linesize[1];
2026 dst->linesize[2] = src->linesize[2];
2027 return 0;
2030 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width,
2031 int pix_fmt, int padtop, int padbottom, int padleft, int padright,
2032 int *color)
2034 uint8_t *optr;
2035 int y_shift;
2036 int x_shift;
2037 int yheight;
2038 int i, y;
2040 if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB ||
2041 !is_yuv_planar(&pix_fmt_info[pix_fmt])) return -1;
2043 for (i = 0; i < 3; i++) {
2044 x_shift = i ? pix_fmt_info[pix_fmt].x_chroma_shift : 0;
2045 y_shift = i ? pix_fmt_info[pix_fmt].y_chroma_shift : 0;
2047 if (padtop || padleft) {
2048 memset(dst->data[i], color[i],
2049 dst->linesize[i] * (padtop >> y_shift) + (padleft >> x_shift));
2052 if (padleft || padright) {
2053 optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
2054 (dst->linesize[i] - (padright >> x_shift));
2055 yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
2056 for (y = 0; y < yheight; y++) {
2057 memset(optr, color[i], (padleft + padright) >> x_shift);
2058 optr += dst->linesize[i];
2062 if (src) { /* first line */
2063 uint8_t *iptr = src->data[i];
2064 optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
2065 (padleft >> x_shift);
2066 memcpy(optr, iptr, (width - padleft - padright) >> x_shift);
2067 iptr += src->linesize[i];
2068 optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
2069 (dst->linesize[i] - (padright >> x_shift));
2070 yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
2071 for (y = 0; y < yheight; y++) {
2072 memset(optr, color[i], (padleft + padright) >> x_shift);
2073 memcpy(optr + ((padleft + padright) >> x_shift), iptr,
2074 (width - padleft - padright) >> x_shift);
2075 iptr += src->linesize[i];
2076 optr += dst->linesize[i];
2080 if (padbottom || padright) {
2081 optr = dst->data[i] + dst->linesize[i] *
2082 ((height - padbottom) >> y_shift) - (padright >> x_shift);
2083 memset(optr, color[i],dst->linesize[i] *
2084 (padbottom >> y_shift) + (padright >> x_shift));
2087 return 0;
2090 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
2091 void img_copy(AVPicture *dst, const AVPicture *src,
2092 int pix_fmt, int width, int height)
2094 av_picture_copy(dst, src, pix_fmt, width, height);
2097 int img_crop(AVPicture *dst, const AVPicture *src,
2098 int pix_fmt, int top_band, int left_band)
2100 return av_picture_crop(dst, src, pix_fmt, top_band, left_band);
2103 int img_pad(AVPicture *dst, const AVPicture *src, int height, int width,
2104 int pix_fmt, int padtop, int padbottom, int padleft, int padright,
2105 int *color)
2107 return av_picture_pad(dst, src, height, width, pix_fmt, padtop, padbottom, padleft, padright, color);
2109 #endif
2111 #ifndef CONFIG_SWSCALE
2112 static uint8_t y_ccir_to_jpeg[256];
2113 static uint8_t y_jpeg_to_ccir[256];
2114 static uint8_t c_ccir_to_jpeg[256];
2115 static uint8_t c_jpeg_to_ccir[256];
2117 /* init various conversion tables */
2118 static void img_convert_init(void)
2120 int i;
2121 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
2123 for(i = 0;i < 256; i++) {
2124 y_ccir_to_jpeg[i] = Y_CCIR_TO_JPEG(i);
2125 y_jpeg_to_ccir[i] = Y_JPEG_TO_CCIR(i);
2126 c_ccir_to_jpeg[i] = C_CCIR_TO_JPEG(i);
2127 c_jpeg_to_ccir[i] = C_JPEG_TO_CCIR(i);
2131 /* apply to each pixel the given table */
2132 static void img_apply_table(uint8_t *dst, int dst_wrap,
2133 const uint8_t *src, int src_wrap,
2134 int width, int height, const uint8_t *table1)
2136 int n;
2137 const uint8_t *s;
2138 uint8_t *d;
2139 const uint8_t *table;
2141 table = table1;
2142 for(;height > 0; height--) {
2143 s = src;
2144 d = dst;
2145 n = width;
2146 while (n >= 4) {
2147 d[0] = table[s[0]];
2148 d[1] = table[s[1]];
2149 d[2] = table[s[2]];
2150 d[3] = table[s[3]];
2151 d += 4;
2152 s += 4;
2153 n -= 4;
2155 while (n > 0) {
2156 d[0] = table[s[0]];
2157 d++;
2158 s++;
2159 n--;
2161 dst += dst_wrap;
2162 src += src_wrap;
2166 /* XXX: use generic filter ? */
2167 /* XXX: in most cases, the sampling position is incorrect */
2169 /* 4x1 -> 1x1 */
2170 static void shrink41(uint8_t *dst, int dst_wrap,
2171 const uint8_t *src, int src_wrap,
2172 int width, int height)
2174 int w;
2175 const uint8_t *s;
2176 uint8_t *d;
2178 for(;height > 0; height--) {
2179 s = src;
2180 d = dst;
2181 for(w = width;w > 0; w--) {
2182 d[0] = (s[0] + s[1] + s[2] + s[3] + 2) >> 2;
2183 s += 4;
2184 d++;
2186 src += src_wrap;
2187 dst += dst_wrap;
2191 /* 2x1 -> 1x1 */
2192 static void shrink21(uint8_t *dst, int dst_wrap,
2193 const uint8_t *src, int src_wrap,
2194 int width, int height)
2196 int w;
2197 const uint8_t *s;
2198 uint8_t *d;
2200 for(;height > 0; height--) {
2201 s = src;
2202 d = dst;
2203 for(w = width;w > 0; w--) {
2204 d[0] = (s[0] + s[1]) >> 1;
2205 s += 2;
2206 d++;
2208 src += src_wrap;
2209 dst += dst_wrap;
2213 /* 1x2 -> 1x1 */
2214 static void shrink12(uint8_t *dst, int dst_wrap,
2215 const uint8_t *src, int src_wrap,
2216 int width, int height)
2218 int w;
2219 uint8_t *d;
2220 const uint8_t *s1, *s2;
2222 for(;height > 0; height--) {
2223 s1 = src;
2224 s2 = s1 + src_wrap;
2225 d = dst;
2226 for(w = width;w >= 4; w-=4) {
2227 d[0] = (s1[0] + s2[0]) >> 1;
2228 d[1] = (s1[1] + s2[1]) >> 1;
2229 d[2] = (s1[2] + s2[2]) >> 1;
2230 d[3] = (s1[3] + s2[3]) >> 1;
2231 s1 += 4;
2232 s2 += 4;
2233 d += 4;
2235 for(;w > 0; w--) {
2236 d[0] = (s1[0] + s2[0]) >> 1;
2237 s1++;
2238 s2++;
2239 d++;
2241 src += 2 * src_wrap;
2242 dst += dst_wrap;
2246 static void grow21_line(uint8_t *dst, const uint8_t *src,
2247 int width)
2249 int w;
2250 const uint8_t *s1;
2251 uint8_t *d;
2253 s1 = src;
2254 d = dst;
2255 for(w = width;w >= 4; w-=4) {
2256 d[1] = d[0] = s1[0];
2257 d[3] = d[2] = s1[1];
2258 s1 += 2;
2259 d += 4;
2261 for(;w >= 2; w -= 2) {
2262 d[1] = d[0] = s1[0];
2263 s1 ++;
2264 d += 2;
2266 /* only needed if width is not a multiple of two */
2267 /* XXX: veryfy that */
2268 if (w) {
2269 d[0] = s1[0];
2273 static void grow41_line(uint8_t *dst, const uint8_t *src,
2274 int width)
2276 int w, v;
2277 const uint8_t *s1;
2278 uint8_t *d;
2280 s1 = src;
2281 d = dst;
2282 for(w = width;w >= 4; w-=4) {
2283 v = s1[0];
2284 d[0] = v;
2285 d[1] = v;
2286 d[2] = v;
2287 d[3] = v;
2288 s1 ++;
2289 d += 4;
2293 /* 1x1 -> 2x1 */
2294 static void grow21(uint8_t *dst, int dst_wrap,
2295 const uint8_t *src, int src_wrap,
2296 int width, int height)
2298 for(;height > 0; height--) {
2299 grow21_line(dst, src, width);
2300 src += src_wrap;
2301 dst += dst_wrap;
2305 /* 1x1 -> 1x2 */
2306 static void grow12(uint8_t *dst, int dst_wrap,
2307 const uint8_t *src, int src_wrap,
2308 int width, int height)
2310 for(;height > 0; height-=2) {
2311 memcpy(dst, src, width);
2312 dst += dst_wrap;
2313 memcpy(dst, src, width);
2314 dst += dst_wrap;
2315 src += src_wrap;
2319 /* 1x1 -> 2x2 */
2320 static void grow22(uint8_t *dst, int dst_wrap,
2321 const uint8_t *src, int src_wrap,
2322 int width, int height)
2324 for(;height > 0; height--) {
2325 grow21_line(dst, src, width);
2326 if (height%2)
2327 src += src_wrap;
2328 dst += dst_wrap;
2332 /* 1x1 -> 4x1 */
2333 static void grow41(uint8_t *dst, int dst_wrap,
2334 const uint8_t *src, int src_wrap,
2335 int width, int height)
2337 for(;height > 0; height--) {
2338 grow41_line(dst, src, width);
2339 src += src_wrap;
2340 dst += dst_wrap;
2344 /* 1x1 -> 4x4 */
2345 static void grow44(uint8_t *dst, int dst_wrap,
2346 const uint8_t *src, int src_wrap,
2347 int width, int height)
2349 for(;height > 0; height--) {
2350 grow41_line(dst, src, width);
2351 if ((height & 3) == 1)
2352 src += src_wrap;
2353 dst += dst_wrap;
2357 /* 1x2 -> 2x1 */
2358 static void conv411(uint8_t *dst, int dst_wrap,
2359 const uint8_t *src, int src_wrap,
2360 int width, int height)
2362 int w, c;
2363 const uint8_t *s1, *s2;
2364 uint8_t *d;
2366 width>>=1;
2368 for(;height > 0; height--) {
2369 s1 = src;
2370 s2 = src + src_wrap;
2371 d = dst;
2372 for(w = width;w > 0; w--) {
2373 c = (s1[0] + s2[0]) >> 1;
2374 d[0] = c;
2375 d[1] = c;
2376 s1++;
2377 s2++;
2378 d += 2;
2380 src += src_wrap * 2;
2381 dst += dst_wrap;
2385 /* XXX: always use linesize. Return -1 if not supported */
2386 int img_convert(AVPicture *dst, int dst_pix_fmt,
2387 const AVPicture *src, int src_pix_fmt,
2388 int src_width, int src_height)
2390 static int initialized;
2391 int i, ret, dst_width, dst_height, int_pix_fmt;
2392 const PixFmtInfo *src_pix, *dst_pix;
2393 const ConvertEntry *ce;
2394 AVPicture tmp1, *tmp = &tmp1;
2396 if (src_pix_fmt < 0 || src_pix_fmt >= PIX_FMT_NB ||
2397 dst_pix_fmt < 0 || dst_pix_fmt >= PIX_FMT_NB)
2398 return -1;
2399 if (src_width <= 0 || src_height <= 0)
2400 return 0;
2402 if (!initialized) {
2403 initialized = 1;
2404 img_convert_init();
2407 dst_width = src_width;
2408 dst_height = src_height;
2410 dst_pix = &pix_fmt_info[dst_pix_fmt];
2411 src_pix = &pix_fmt_info[src_pix_fmt];
2412 if (src_pix_fmt == dst_pix_fmt) {
2413 /* no conversion needed: just copy */
2414 av_picture_copy(dst, src, dst_pix_fmt, dst_width, dst_height);
2415 return 0;
2418 ce = &convert_table[src_pix_fmt][dst_pix_fmt];
2419 if (ce->convert) {
2420 /* specific conversion routine */
2421 ce->convert(dst, src, dst_width, dst_height);
2422 return 0;
2425 /* gray to YUV */
2426 if (is_yuv_planar(dst_pix) &&
2427 src_pix_fmt == PIX_FMT_GRAY8) {
2428 int w, h, y;
2429 uint8_t *d;
2431 if (dst_pix->color_type == FF_COLOR_YUV_JPEG) {
2432 ff_img_copy_plane(dst->data[0], dst->linesize[0],
2433 src->data[0], src->linesize[0],
2434 dst_width, dst_height);
2435 } else {
2436 img_apply_table(dst->data[0], dst->linesize[0],
2437 src->data[0], src->linesize[0],
2438 dst_width, dst_height,
2439 y_jpeg_to_ccir);
2441 /* fill U and V with 128 */
2442 w = dst_width;
2443 h = dst_height;
2444 w >>= dst_pix->x_chroma_shift;
2445 h >>= dst_pix->y_chroma_shift;
2446 for(i = 1; i <= 2; i++) {
2447 d = dst->data[i];
2448 for(y = 0; y< h; y++) {
2449 memset(d, 128, w);
2450 d += dst->linesize[i];
2453 return 0;
2456 /* YUV to gray */
2457 if (is_yuv_planar(src_pix) &&
2458 dst_pix_fmt == PIX_FMT_GRAY8) {
2459 if (src_pix->color_type == FF_COLOR_YUV_JPEG) {
2460 ff_img_copy_plane(dst->data[0], dst->linesize[0],
2461 src->data[0], src->linesize[0],
2462 dst_width, dst_height);
2463 } else {
2464 img_apply_table(dst->data[0], dst->linesize[0],
2465 src->data[0], src->linesize[0],
2466 dst_width, dst_height,
2467 y_ccir_to_jpeg);
2469 return 0;
2472 /* YUV to YUV planar */
2473 if (is_yuv_planar(dst_pix) && is_yuv_planar(src_pix)) {
2474 int x_shift, y_shift, w, h, xy_shift;
2475 void (*resize_func)(uint8_t *dst, int dst_wrap,
2476 const uint8_t *src, int src_wrap,
2477 int width, int height);
2479 /* compute chroma size of the smallest dimensions */
2480 w = dst_width;
2481 h = dst_height;
2482 if (dst_pix->x_chroma_shift >= src_pix->x_chroma_shift)
2483 w >>= dst_pix->x_chroma_shift;
2484 else
2485 w >>= src_pix->x_chroma_shift;
2486 if (dst_pix->y_chroma_shift >= src_pix->y_chroma_shift)
2487 h >>= dst_pix->y_chroma_shift;
2488 else
2489 h >>= src_pix->y_chroma_shift;
2491 x_shift = (dst_pix->x_chroma_shift - src_pix->x_chroma_shift);
2492 y_shift = (dst_pix->y_chroma_shift - src_pix->y_chroma_shift);
2493 xy_shift = ((x_shift & 0xf) << 4) | (y_shift & 0xf);
2494 /* there must be filters for conversion at least from and to
2495 YUV444 format */
2496 switch(xy_shift) {
2497 case 0x00:
2498 resize_func = ff_img_copy_plane;
2499 break;
2500 case 0x10:
2501 resize_func = shrink21;
2502 break;
2503 case 0x20:
2504 resize_func = shrink41;
2505 break;
2506 case 0x01:
2507 resize_func = shrink12;
2508 break;
2509 case 0x11:
2510 resize_func = ff_shrink22;
2511 break;
2512 case 0x22:
2513 resize_func = ff_shrink44;
2514 break;
2515 case 0xf0:
2516 resize_func = grow21;
2517 break;
2518 case 0x0f:
2519 resize_func = grow12;
2520 break;
2521 case 0xe0:
2522 resize_func = grow41;
2523 break;
2524 case 0xff:
2525 resize_func = grow22;
2526 break;
2527 case 0xee:
2528 resize_func = grow44;
2529 break;
2530 case 0xf1:
2531 resize_func = conv411;
2532 break;
2533 default:
2534 /* currently not handled */
2535 goto no_chroma_filter;
2538 ff_img_copy_plane(dst->data[0], dst->linesize[0],
2539 src->data[0], src->linesize[0],
2540 dst_width, dst_height);
2542 for(i = 1;i <= 2; i++)
2543 resize_func(dst->data[i], dst->linesize[i],
2544 src->data[i], src->linesize[i],
2545 dst_width>>dst_pix->x_chroma_shift, dst_height>>dst_pix->y_chroma_shift);
2546 /* if yuv color space conversion is needed, we do it here on
2547 the destination image */
2548 if (dst_pix->color_type != src_pix->color_type) {
2549 const uint8_t *y_table, *c_table;
2550 if (dst_pix->color_type == FF_COLOR_YUV) {
2551 y_table = y_jpeg_to_ccir;
2552 c_table = c_jpeg_to_ccir;
2553 } else {
2554 y_table = y_ccir_to_jpeg;
2555 c_table = c_ccir_to_jpeg;
2557 img_apply_table(dst->data[0], dst->linesize[0],
2558 dst->data[0], dst->linesize[0],
2559 dst_width, dst_height,
2560 y_table);
2562 for(i = 1;i <= 2; i++)
2563 img_apply_table(dst->data[i], dst->linesize[i],
2564 dst->data[i], dst->linesize[i],
2565 dst_width>>dst_pix->x_chroma_shift,
2566 dst_height>>dst_pix->y_chroma_shift,
2567 c_table);
2569 return 0;
2571 no_chroma_filter:
2573 /* try to use an intermediate format */
2574 if (src_pix_fmt == PIX_FMT_YUYV422 ||
2575 dst_pix_fmt == PIX_FMT_YUYV422) {
2576 /* specific case: convert to YUV422P first */
2577 int_pix_fmt = PIX_FMT_YUV422P;
2578 } else if (src_pix_fmt == PIX_FMT_UYVY422 ||
2579 dst_pix_fmt == PIX_FMT_UYVY422) {
2580 /* specific case: convert to YUV422P first */
2581 int_pix_fmt = PIX_FMT_YUV422P;
2582 } else if (src_pix_fmt == PIX_FMT_UYYVYY411 ||
2583 dst_pix_fmt == PIX_FMT_UYYVYY411) {
2584 /* specific case: convert to YUV411P first */
2585 int_pix_fmt = PIX_FMT_YUV411P;
2586 } else if ((src_pix->color_type == FF_COLOR_GRAY &&
2587 src_pix_fmt != PIX_FMT_GRAY8) ||
2588 (dst_pix->color_type == FF_COLOR_GRAY &&
2589 dst_pix_fmt != PIX_FMT_GRAY8)) {
2590 /* gray8 is the normalized format */
2591 int_pix_fmt = PIX_FMT_GRAY8;
2592 } else if ((is_yuv_planar(src_pix) &&
2593 src_pix_fmt != PIX_FMT_YUV444P &&
2594 src_pix_fmt != PIX_FMT_YUVJ444P)) {
2595 /* yuv444 is the normalized format */
2596 if (src_pix->color_type == FF_COLOR_YUV_JPEG)
2597 int_pix_fmt = PIX_FMT_YUVJ444P;
2598 else
2599 int_pix_fmt = PIX_FMT_YUV444P;
2600 } else if ((is_yuv_planar(dst_pix) &&
2601 dst_pix_fmt != PIX_FMT_YUV444P &&
2602 dst_pix_fmt != PIX_FMT_YUVJ444P)) {
2603 /* yuv444 is the normalized format */
2604 if (dst_pix->color_type == FF_COLOR_YUV_JPEG)
2605 int_pix_fmt = PIX_FMT_YUVJ444P;
2606 else
2607 int_pix_fmt = PIX_FMT_YUV444P;
2608 } else {
2609 /* the two formats are rgb or gray8 or yuv[j]444p */
2610 if (src_pix->is_alpha && dst_pix->is_alpha)
2611 int_pix_fmt = PIX_FMT_RGB32;
2612 else
2613 int_pix_fmt = PIX_FMT_RGB24;
2615 if (src_pix_fmt == int_pix_fmt)
2616 return -1;
2617 if (avpicture_alloc(tmp, int_pix_fmt, dst_width, dst_height) < 0)
2618 return -1;
2619 ret = -1;
2620 if (img_convert(tmp, int_pix_fmt,
2621 src, src_pix_fmt, src_width, src_height) < 0)
2622 goto fail1;
2623 if (img_convert(dst, dst_pix_fmt,
2624 tmp, int_pix_fmt, dst_width, dst_height) < 0)
2625 goto fail1;
2626 ret = 0;
2627 fail1:
2628 avpicture_free(tmp);
2629 return ret;
2631 #endif
2633 /* NOTE: we scan all the pixels to have an exact information */
2634 static int get_alpha_info_pal8(const AVPicture *src, int width, int height)
2636 const unsigned char *p;
2637 int src_wrap, ret, x, y;
2638 unsigned int a;
2639 uint32_t *palette = (uint32_t *)src->data[1];
2641 p = src->data[0];
2642 src_wrap = src->linesize[0] - width;
2643 ret = 0;
2644 for(y=0;y<height;y++) {
2645 for(x=0;x<width;x++) {
2646 a = palette[p[0]] >> 24;
2647 if (a == 0x00) {
2648 ret |= FF_ALPHA_TRANSP;
2649 } else if (a != 0xff) {
2650 ret |= FF_ALPHA_SEMI_TRANSP;
2652 p++;
2654 p += src_wrap;
2656 return ret;
2659 int img_get_alpha_info(const AVPicture *src,
2660 int pix_fmt, int width, int height)
2662 const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
2663 int ret;
2665 pf = &pix_fmt_info[pix_fmt];
2666 /* no alpha can be represented in format */
2667 if (!pf->is_alpha)
2668 return 0;
2669 switch(pix_fmt) {
2670 case PIX_FMT_RGB32:
2671 ret = get_alpha_info_rgb32(src, width, height);
2672 break;
2673 case PIX_FMT_PAL8:
2674 ret = get_alpha_info_pal8(src, width, height);
2675 break;
2676 default:
2677 /* we do not know, so everything is indicated */
2678 ret = FF_ALPHA_TRANSP | FF_ALPHA_SEMI_TRANSP;
2679 break;
2681 return ret;
2684 #ifdef HAVE_MMX
2685 #define DEINT_INPLACE_LINE_LUM \
2686 movd_m2r(lum_m4[0],mm0);\
2687 movd_m2r(lum_m3[0],mm1);\
2688 movd_m2r(lum_m2[0],mm2);\
2689 movd_m2r(lum_m1[0],mm3);\
2690 movd_m2r(lum[0],mm4);\
2691 punpcklbw_r2r(mm7,mm0);\
2692 movd_r2m(mm2,lum_m4[0]);\
2693 punpcklbw_r2r(mm7,mm1);\
2694 punpcklbw_r2r(mm7,mm2);\
2695 punpcklbw_r2r(mm7,mm3);\
2696 punpcklbw_r2r(mm7,mm4);\
2697 paddw_r2r(mm3,mm1);\
2698 psllw_i2r(1,mm2);\
2699 paddw_r2r(mm4,mm0);\
2700 psllw_i2r(2,mm1);\
2701 paddw_r2r(mm6,mm2);\
2702 paddw_r2r(mm2,mm1);\
2703 psubusw_r2r(mm0,mm1);\
2704 psrlw_i2r(3,mm1);\
2705 packuswb_r2r(mm7,mm1);\
2706 movd_r2m(mm1,lum_m2[0]);
2708 #define DEINT_LINE_LUM \
2709 movd_m2r(lum_m4[0],mm0);\
2710 movd_m2r(lum_m3[0],mm1);\
2711 movd_m2r(lum_m2[0],mm2);\
2712 movd_m2r(lum_m1[0],mm3);\
2713 movd_m2r(lum[0],mm4);\
2714 punpcklbw_r2r(mm7,mm0);\
2715 punpcklbw_r2r(mm7,mm1);\
2716 punpcklbw_r2r(mm7,mm2);\
2717 punpcklbw_r2r(mm7,mm3);\
2718 punpcklbw_r2r(mm7,mm4);\
2719 paddw_r2r(mm3,mm1);\
2720 psllw_i2r(1,mm2);\
2721 paddw_r2r(mm4,mm0);\
2722 psllw_i2r(2,mm1);\
2723 paddw_r2r(mm6,mm2);\
2724 paddw_r2r(mm2,mm1);\
2725 psubusw_r2r(mm0,mm1);\
2726 psrlw_i2r(3,mm1);\
2727 packuswb_r2r(mm7,mm1);\
2728 movd_r2m(mm1,dst[0]);
2729 #endif
2731 /* filter parameters: [-1 4 2 4 -1] // 8 */
2732 static void deinterlace_line(uint8_t *dst,
2733 const uint8_t *lum_m4, const uint8_t *lum_m3,
2734 const uint8_t *lum_m2, const uint8_t *lum_m1,
2735 const uint8_t *lum,
2736 int size)
2738 #ifndef HAVE_MMX
2739 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
2740 int sum;
2742 for(;size > 0;size--) {
2743 sum = -lum_m4[0];
2744 sum += lum_m3[0] << 2;
2745 sum += lum_m2[0] << 1;
2746 sum += lum_m1[0] << 2;
2747 sum += -lum[0];
2748 dst[0] = cm[(sum + 4) >> 3];
2749 lum_m4++;
2750 lum_m3++;
2751 lum_m2++;
2752 lum_m1++;
2753 lum++;
2754 dst++;
2756 #else
2759 mmx_t rounder;
2760 rounder.uw[0]=4;
2761 rounder.uw[1]=4;
2762 rounder.uw[2]=4;
2763 rounder.uw[3]=4;
2764 pxor_r2r(mm7,mm7);
2765 movq_m2r(rounder,mm6);
2767 for (;size > 3; size-=4) {
2768 DEINT_LINE_LUM
2769 lum_m4+=4;
2770 lum_m3+=4;
2771 lum_m2+=4;
2772 lum_m1+=4;
2773 lum+=4;
2774 dst+=4;
2776 #endif
2778 static void deinterlace_line_inplace(uint8_t *lum_m4, uint8_t *lum_m3, uint8_t *lum_m2, uint8_t *lum_m1, uint8_t *lum,
2779 int size)
2781 #ifndef HAVE_MMX
2782 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
2783 int sum;
2785 for(;size > 0;size--) {
2786 sum = -lum_m4[0];
2787 sum += lum_m3[0] << 2;
2788 sum += lum_m2[0] << 1;
2789 lum_m4[0]=lum_m2[0];
2790 sum += lum_m1[0] << 2;
2791 sum += -lum[0];
2792 lum_m2[0] = cm[(sum + 4) >> 3];
2793 lum_m4++;
2794 lum_m3++;
2795 lum_m2++;
2796 lum_m1++;
2797 lum++;
2799 #else
2802 mmx_t rounder;
2803 rounder.uw[0]=4;
2804 rounder.uw[1]=4;
2805 rounder.uw[2]=4;
2806 rounder.uw[3]=4;
2807 pxor_r2r(mm7,mm7);
2808 movq_m2r(rounder,mm6);
2810 for (;size > 3; size-=4) {
2811 DEINT_INPLACE_LINE_LUM
2812 lum_m4+=4;
2813 lum_m3+=4;
2814 lum_m2+=4;
2815 lum_m1+=4;
2816 lum+=4;
2818 #endif
2821 /* deinterlacing : 2 temporal taps, 3 spatial taps linear filter. The
2822 top field is copied as is, but the bottom field is deinterlaced
2823 against the top field. */
2824 static void deinterlace_bottom_field(uint8_t *dst, int dst_wrap,
2825 const uint8_t *src1, int src_wrap,
2826 int width, int height)
2828 const uint8_t *src_m2, *src_m1, *src_0, *src_p1, *src_p2;
2829 int y;
2831 src_m2 = src1;
2832 src_m1 = src1;
2833 src_0=&src_m1[src_wrap];
2834 src_p1=&src_0[src_wrap];
2835 src_p2=&src_p1[src_wrap];
2836 for(y=0;y<(height-2);y+=2) {
2837 memcpy(dst,src_m1,width);
2838 dst += dst_wrap;
2839 deinterlace_line(dst,src_m2,src_m1,src_0,src_p1,src_p2,width);
2840 src_m2 = src_0;
2841 src_m1 = src_p1;
2842 src_0 = src_p2;
2843 src_p1 += 2*src_wrap;
2844 src_p2 += 2*src_wrap;
2845 dst += dst_wrap;
2847 memcpy(dst,src_m1,width);
2848 dst += dst_wrap;
2849 /* do last line */
2850 deinterlace_line(dst,src_m2,src_m1,src_0,src_0,src_0,width);
2853 static void deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
2854 int width, int height)
2856 uint8_t *src_m1, *src_0, *src_p1, *src_p2;
2857 int y;
2858 uint8_t *buf;
2859 buf = (uint8_t*)av_malloc(width);
2861 src_m1 = src1;
2862 memcpy(buf,src_m1,width);
2863 src_0=&src_m1[src_wrap];
2864 src_p1=&src_0[src_wrap];
2865 src_p2=&src_p1[src_wrap];
2866 for(y=0;y<(height-2);y+=2) {
2867 deinterlace_line_inplace(buf,src_m1,src_0,src_p1,src_p2,width);
2868 src_m1 = src_p1;
2869 src_0 = src_p2;
2870 src_p1 += 2*src_wrap;
2871 src_p2 += 2*src_wrap;
2873 /* do last line */
2874 deinterlace_line_inplace(buf,src_m1,src_0,src_0,src_0,width);
2875 av_free(buf);
2878 int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
2879 int pix_fmt, int width, int height)
2881 int i;
2883 if (pix_fmt != PIX_FMT_YUV420P &&
2884 pix_fmt != PIX_FMT_YUV422P &&
2885 pix_fmt != PIX_FMT_YUV444P &&
2886 pix_fmt != PIX_FMT_YUV411P &&
2887 pix_fmt != PIX_FMT_GRAY8)
2888 return -1;
2889 if ((width & 3) != 0 || (height & 3) != 0)
2890 return -1;
2892 for(i=0;i<3;i++) {
2893 if (i == 1) {
2894 switch(pix_fmt) {
2895 case PIX_FMT_YUV420P:
2896 width >>= 1;
2897 height >>= 1;
2898 break;
2899 case PIX_FMT_YUV422P:
2900 width >>= 1;
2901 break;
2902 case PIX_FMT_YUV411P:
2903 width >>= 2;
2904 break;
2905 default:
2906 break;
2908 if (pix_fmt == PIX_FMT_GRAY8) {
2909 break;
2912 if (src == dst) {
2913 deinterlace_bottom_field_inplace(dst->data[i], dst->linesize[i],
2914 width, height);
2915 } else {
2916 deinterlace_bottom_field(dst->data[i],dst->linesize[i],
2917 src->data[i], src->linesize[i],
2918 width, height);
2921 emms_c();
2922 return 0;