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
23 * @file libavcodec/imgconvert.c
24 * misc image conversion routines
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
35 #include "colorspace.h"
39 #include "x86/dsputil_mmx.h"
42 #define xglue(x, y) x ## y
43 #define glue(x, y) xglue(x, y)
45 #define FF_COLOR_RGB 0 /**< RGB color space */
46 #define FF_COLOR_GRAY 1 /**< gray color space */
47 #define FF_COLOR_YUV 2 /**< YUV color space. 16 <= Y <= 235, 16 <= U, V <= 240 */
48 #define FF_COLOR_YUV_JPEG 3 /**< YUV color space. 0 <= Y <= 255, 0 <= U, V <= 255 */
50 #define FF_PIXEL_PLANAR 0 /**< each channel has one component in AVPicture */
51 #define FF_PIXEL_PACKED 1 /**< only one components containing all the channels */
52 #define FF_PIXEL_PALETTE 2 /**< one components containing indexes for a palette */
54 typedef struct PixFmtInfo
{
56 uint8_t nb_channels
; /**< number of channels (including alpha) */
57 uint8_t color_type
; /**< color type (see FF_COLOR_xxx constants) */
58 uint8_t pixel_type
; /**< pixel storage type (see FF_PIXEL_xxx constants) */
59 uint8_t is_alpha
: 1; /**< true if alpha can be specified */
60 uint8_t is_hwaccel
: 1; /**< true if this is an HW accelerated format */
61 uint8_t x_chroma_shift
; /**< X chroma subsampling factor is 2 ^ shift */
62 uint8_t y_chroma_shift
; /**< Y chroma subsampling factor is 2 ^ shift */
63 uint8_t depth
; /**< bit depth of the color components */
66 /* this table gives more information about formats */
67 static const PixFmtInfo pix_fmt_info
[PIX_FMT_NB
] = {
72 .color_type
= FF_COLOR_YUV
,
73 .pixel_type
= FF_PIXEL_PLANAR
,
75 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
80 .color_type
= FF_COLOR_YUV
,
81 .pixel_type
= FF_PIXEL_PLANAR
,
83 .x_chroma_shift
= 1, .y_chroma_shift
= 0,
88 .color_type
= FF_COLOR_YUV
,
89 .pixel_type
= FF_PIXEL_PLANAR
,
91 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
96 .color_type
= FF_COLOR_YUV
,
97 .pixel_type
= FF_PIXEL_PACKED
,
99 .x_chroma_shift
= 1, .y_chroma_shift
= 0,
101 [PIX_FMT_UYVY422
] = {
104 .color_type
= FF_COLOR_YUV
,
105 .pixel_type
= FF_PIXEL_PACKED
,
107 .x_chroma_shift
= 1, .y_chroma_shift
= 0,
109 [PIX_FMT_YUV410P
] = {
112 .color_type
= FF_COLOR_YUV
,
113 .pixel_type
= FF_PIXEL_PLANAR
,
115 .x_chroma_shift
= 2, .y_chroma_shift
= 2,
117 [PIX_FMT_YUV411P
] = {
120 .color_type
= FF_COLOR_YUV
,
121 .pixel_type
= FF_PIXEL_PLANAR
,
123 .x_chroma_shift
= 2, .y_chroma_shift
= 0,
125 [PIX_FMT_YUV440P
] = {
128 .color_type
= FF_COLOR_YUV
,
129 .pixel_type
= FF_PIXEL_PLANAR
,
131 .x_chroma_shift
= 0, .y_chroma_shift
= 1,
134 /* YUV formats with alpha plane */
135 [PIX_FMT_YUVA420P
] = {
138 .color_type
= FF_COLOR_YUV
,
139 .pixel_type
= FF_PIXEL_PLANAR
,
141 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
145 [PIX_FMT_YUVJ420P
] = {
148 .color_type
= FF_COLOR_YUV_JPEG
,
149 .pixel_type
= FF_PIXEL_PLANAR
,
151 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
153 [PIX_FMT_YUVJ422P
] = {
156 .color_type
= FF_COLOR_YUV_JPEG
,
157 .pixel_type
= FF_PIXEL_PLANAR
,
159 .x_chroma_shift
= 1, .y_chroma_shift
= 0,
161 [PIX_FMT_YUVJ444P
] = {
164 .color_type
= FF_COLOR_YUV_JPEG
,
165 .pixel_type
= FF_PIXEL_PLANAR
,
167 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
169 [PIX_FMT_YUVJ440P
] = {
172 .color_type
= FF_COLOR_YUV_JPEG
,
173 .pixel_type
= FF_PIXEL_PLANAR
,
175 .x_chroma_shift
= 0, .y_chroma_shift
= 1,
182 .color_type
= FF_COLOR_RGB
,
183 .pixel_type
= FF_PIXEL_PACKED
,
185 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
190 .color_type
= FF_COLOR_RGB
,
191 .pixel_type
= FF_PIXEL_PACKED
,
193 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
197 .nb_channels
= 4, .is_alpha
= 1,
198 .color_type
= FF_COLOR_RGB
,
199 .pixel_type
= FF_PIXEL_PACKED
,
201 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
203 [PIX_FMT_RGB48BE
] = {
206 .color_type
= FF_COLOR_RGB
,
207 .pixel_type
= FF_PIXEL_PACKED
,
209 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
211 [PIX_FMT_RGB48LE
] = {
214 .color_type
= FF_COLOR_RGB
,
215 .pixel_type
= FF_PIXEL_PACKED
,
217 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
219 [PIX_FMT_RGB565BE
] = {
222 .color_type
= FF_COLOR_RGB
,
223 .pixel_type
= FF_PIXEL_PACKED
,
225 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
227 [PIX_FMT_RGB565LE
] = {
230 .color_type
= FF_COLOR_RGB
,
231 .pixel_type
= FF_PIXEL_PACKED
,
233 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
235 [PIX_FMT_RGB555BE
] = {
238 .color_type
= FF_COLOR_RGB
,
239 .pixel_type
= FF_PIXEL_PACKED
,
241 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
243 [PIX_FMT_RGB555LE
] = {
246 .color_type
= FF_COLOR_RGB
,
247 .pixel_type
= FF_PIXEL_PACKED
,
249 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
252 /* gray / mono formats */
253 [PIX_FMT_GRAY16BE
] = {
256 .color_type
= FF_COLOR_GRAY
,
257 .pixel_type
= FF_PIXEL_PLANAR
,
260 [PIX_FMT_GRAY16LE
] = {
263 .color_type
= FF_COLOR_GRAY
,
264 .pixel_type
= FF_PIXEL_PLANAR
,
270 .color_type
= FF_COLOR_GRAY
,
271 .pixel_type
= FF_PIXEL_PLANAR
,
274 [PIX_FMT_MONOWHITE
] = {
277 .color_type
= FF_COLOR_GRAY
,
278 .pixel_type
= FF_PIXEL_PLANAR
,
281 [PIX_FMT_MONOBLACK
] = {
284 .color_type
= FF_COLOR_GRAY
,
285 .pixel_type
= FF_PIXEL_PLANAR
,
289 /* paletted formats */
292 .nb_channels
= 4, .is_alpha
= 1,
293 .color_type
= FF_COLOR_RGB
,
294 .pixel_type
= FF_PIXEL_PALETTE
,
297 [PIX_FMT_XVMC_MPEG2_MC
] = {
301 [PIX_FMT_XVMC_MPEG2_IDCT
] = {
305 [PIX_FMT_VDPAU_MPEG1
] = {
306 .name
= "vdpau_mpeg1",
308 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
310 [PIX_FMT_VDPAU_MPEG2
] = {
311 .name
= "vdpau_mpeg2",
313 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
315 [PIX_FMT_VDPAU_H264
] = {
316 .name
= "vdpau_h264",
318 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
320 [PIX_FMT_VDPAU_WMV3
] = {
321 .name
= "vdpau_wmv3",
323 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
325 [PIX_FMT_VDPAU_VC1
] = {
328 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
330 [PIX_FMT_UYYVYY411
] = {
333 .color_type
= FF_COLOR_YUV
,
334 .pixel_type
= FF_PIXEL_PACKED
,
336 .x_chroma_shift
= 2, .y_chroma_shift
= 0,
340 .nb_channels
= 4, .is_alpha
= 1,
341 .color_type
= FF_COLOR_RGB
,
342 .pixel_type
= FF_PIXEL_PACKED
,
344 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
346 [PIX_FMT_BGR565BE
] = {
349 .color_type
= FF_COLOR_RGB
,
350 .pixel_type
= FF_PIXEL_PACKED
,
352 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
354 [PIX_FMT_BGR565LE
] = {
357 .color_type
= FF_COLOR_RGB
,
358 .pixel_type
= FF_PIXEL_PACKED
,
360 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
362 [PIX_FMT_BGR555BE
] = {
365 .color_type
= FF_COLOR_RGB
,
366 .pixel_type
= FF_PIXEL_PACKED
,
368 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
370 [PIX_FMT_BGR555LE
] = {
373 .color_type
= FF_COLOR_RGB
,
374 .pixel_type
= FF_PIXEL_PACKED
,
376 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
381 .color_type
= FF_COLOR_RGB
,
382 .pixel_type
= FF_PIXEL_PACKED
,
384 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
389 .color_type
= FF_COLOR_RGB
,
390 .pixel_type
= FF_PIXEL_PACKED
,
392 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
394 [PIX_FMT_RGB4_BYTE
] = {
397 .color_type
= FF_COLOR_RGB
,
398 .pixel_type
= FF_PIXEL_PACKED
,
400 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
405 .color_type
= FF_COLOR_RGB
,
406 .pixel_type
= FF_PIXEL_PACKED
,
408 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
413 .color_type
= FF_COLOR_RGB
,
414 .pixel_type
= FF_PIXEL_PACKED
,
416 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
418 [PIX_FMT_BGR4_BYTE
] = {
421 .color_type
= FF_COLOR_RGB
,
422 .pixel_type
= FF_PIXEL_PACKED
,
424 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
429 .color_type
= FF_COLOR_YUV
,
430 .pixel_type
= FF_PIXEL_PLANAR
,
432 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
437 .color_type
= FF_COLOR_YUV
,
438 .pixel_type
= FF_PIXEL_PLANAR
,
440 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
445 .nb_channels
= 4, .is_alpha
= 1,
446 .color_type
= FF_COLOR_RGB
,
447 .pixel_type
= FF_PIXEL_PACKED
,
449 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
453 .nb_channels
= 4, .is_alpha
= 1,
454 .color_type
= FF_COLOR_RGB
,
455 .pixel_type
= FF_PIXEL_PACKED
,
457 .x_chroma_shift
= 0, .y_chroma_shift
= 0,
461 [PIX_FMT_VAAPI_MOCO
] = {
462 .name
= "vaapi_moco",
464 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
466 [PIX_FMT_VAAPI_IDCT
] = {
467 .name
= "vaapi_idct",
469 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
471 [PIX_FMT_VAAPI_VLD
] = {
474 .x_chroma_shift
= 1, .y_chroma_shift
= 1,
478 void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt
, int *h_shift
, int *v_shift
)
480 *h_shift
= pix_fmt_info
[pix_fmt
].x_chroma_shift
;
481 *v_shift
= pix_fmt_info
[pix_fmt
].y_chroma_shift
;
484 const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt
)
486 if (pix_fmt
< 0 || pix_fmt
>= PIX_FMT_NB
)
489 return pix_fmt_info
[pix_fmt
].name
;
492 static enum PixelFormat
avcodec_get_pix_fmt_internal(const char *name
)
496 for (i
=0; i
< PIX_FMT_NB
; i
++)
497 if (pix_fmt_info
[i
].name
&& !strcmp(pix_fmt_info
[i
].name
, name
))
502 #ifdef WORDS_BIGENDIAN
503 # define X_NE(be, le) be
505 # define X_NE(be, le) le
508 enum PixelFormat
avcodec_get_pix_fmt(const char *name
)
510 enum PixelFormat pix_fmt
;
512 if (!strcmp(name
, "rgb32"))
513 name
= X_NE("argb", "bgra");
514 else if (!strcmp(name
, "bgr32"))
515 name
= X_NE("abgr", "rgba");
517 pix_fmt
= avcodec_get_pix_fmt_internal(name
);
518 if (pix_fmt
== PIX_FMT_NONE
) {
520 snprintf(name2
, sizeof(name2
), "%s%s", name
, X_NE("be", "le"));
521 pix_fmt
= avcodec_get_pix_fmt_internal(name2
);
526 void avcodec_pix_fmt_string (char *buf
, int buf_size
, enum PixelFormat pix_fmt
)
530 snprintf (buf
, buf_size
,
531 "name " " nb_channels" " depth" " is_alpha"
534 PixFmtInfo info
= pix_fmt_info
[pix_fmt
];
536 char is_alpha_char
= info
.is_alpha
? 'y' : 'n';
538 snprintf (buf
, buf_size
,
539 "%-10s" " %1d " " %2d " " %c ",
548 int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt
)
550 return pix_fmt_info
[pix_fmt
].is_hwaccel
;
553 int ff_set_systematic_pal(uint32_t pal
[256], enum PixelFormat pix_fmt
){
556 for(i
=0; i
<256; i
++){
570 case PIX_FMT_RGB4_BYTE
:
575 case PIX_FMT_BGR4_BYTE
:
586 pal
[i
] = b
+ (g
<<8) + (r
<<16);
592 int ff_fill_linesize(AVPicture
*picture
, enum PixelFormat pix_fmt
, int width
)
595 const PixFmtInfo
*pinfo
;
597 memset(picture
->linesize
, 0, sizeof(picture
->linesize
));
599 pinfo
= &pix_fmt_info
[pix_fmt
];
601 case PIX_FMT_YUV420P
:
602 case PIX_FMT_YUV422P
:
603 case PIX_FMT_YUV444P
:
604 case PIX_FMT_YUV410P
:
605 case PIX_FMT_YUV411P
:
606 case PIX_FMT_YUV440P
:
607 case PIX_FMT_YUVJ420P
:
608 case PIX_FMT_YUVJ422P
:
609 case PIX_FMT_YUVJ444P
:
610 case PIX_FMT_YUVJ440P
:
611 w2
= (width
+ (1 << pinfo
->x_chroma_shift
) - 1) >> pinfo
->x_chroma_shift
;
612 picture
->linesize
[0] = width
;
613 picture
->linesize
[1] = w2
;
614 picture
->linesize
[2] = w2
;
616 case PIX_FMT_YUVA420P
:
617 w2
= (width
+ (1 << pinfo
->x_chroma_shift
) - 1) >> pinfo
->x_chroma_shift
;
618 picture
->linesize
[0] = width
;
619 picture
->linesize
[1] = w2
;
620 picture
->linesize
[2] = w2
;
621 picture
->linesize
[3] = width
;
625 w2
= (width
+ (1 << pinfo
->x_chroma_shift
) - 1) >> pinfo
->x_chroma_shift
;
626 picture
->linesize
[0] = width
;
627 picture
->linesize
[1] = w2
;
631 picture
->linesize
[0] = width
* 3;
637 picture
->linesize
[0] = width
* 4;
639 case PIX_FMT_RGB48BE
:
640 case PIX_FMT_RGB48LE
:
641 picture
->linesize
[0] = width
* 6;
643 case PIX_FMT_GRAY16BE
:
644 case PIX_FMT_GRAY16LE
:
649 case PIX_FMT_YUYV422
:
650 picture
->linesize
[0] = width
* 2;
652 case PIX_FMT_UYVY422
:
653 picture
->linesize
[0] = width
* 2;
655 case PIX_FMT_UYYVYY411
:
656 picture
->linesize
[0] = width
+ width
/2;
660 picture
->linesize
[0] = width
/ 2;
662 case PIX_FMT_MONOWHITE
:
663 case PIX_FMT_MONOBLACK
:
664 picture
->linesize
[0] = (width
+ 7) >> 3;
669 case PIX_FMT_RGB4_BYTE
:
670 case PIX_FMT_BGR4_BYTE
:
672 picture
->linesize
[0] = width
;
680 int ff_fill_pointer(AVPicture
*picture
, uint8_t *ptr
, enum PixelFormat pix_fmt
,
684 const PixFmtInfo
*pinfo
;
686 pinfo
= &pix_fmt_info
[pix_fmt
];
687 size
= picture
->linesize
[0] * height
;
689 case PIX_FMT_YUV420P
:
690 case PIX_FMT_YUV422P
:
691 case PIX_FMT_YUV444P
:
692 case PIX_FMT_YUV410P
:
693 case PIX_FMT_YUV411P
:
694 case PIX_FMT_YUV440P
:
695 case PIX_FMT_YUVJ420P
:
696 case PIX_FMT_YUVJ422P
:
697 case PIX_FMT_YUVJ444P
:
698 case PIX_FMT_YUVJ440P
:
699 h2
= (height
+ (1 << pinfo
->y_chroma_shift
) - 1) >> pinfo
->y_chroma_shift
;
700 size2
= picture
->linesize
[1] * h2
;
701 picture
->data
[0] = ptr
;
702 picture
->data
[1] = picture
->data
[0] + size
;
703 picture
->data
[2] = picture
->data
[1] + size2
;
704 picture
->data
[3] = NULL
;
705 return size
+ 2 * size2
;
706 case PIX_FMT_YUVA420P
:
707 h2
= (height
+ (1 << pinfo
->y_chroma_shift
) - 1) >> pinfo
->y_chroma_shift
;
708 size2
= picture
->linesize
[1] * h2
;
709 picture
->data
[0] = ptr
;
710 picture
->data
[1] = picture
->data
[0] + size
;
711 picture
->data
[2] = picture
->data
[1] + size2
;
712 picture
->data
[3] = picture
->data
[1] + size2
+ size2
;
713 return 2 * size
+ 2 * size2
;
716 h2
= (height
+ (1 << pinfo
->y_chroma_shift
) - 1) >> pinfo
->y_chroma_shift
;
717 size2
= picture
->linesize
[1] * h2
* 2;
718 picture
->data
[0] = ptr
;
719 picture
->data
[1] = picture
->data
[0] + size
;
720 picture
->data
[2] = NULL
;
721 picture
->data
[3] = NULL
;
722 return size
+ 2 * size2
;
729 case PIX_FMT_RGB48BE
:
730 case PIX_FMT_RGB48LE
:
731 case PIX_FMT_GRAY16BE
:
732 case PIX_FMT_GRAY16LE
:
737 case PIX_FMT_YUYV422
:
738 case PIX_FMT_UYVY422
:
739 case PIX_FMT_UYYVYY411
:
742 case PIX_FMT_MONOWHITE
:
743 case PIX_FMT_MONOBLACK
:
744 picture
->data
[0] = ptr
;
745 picture
->data
[1] = NULL
;
746 picture
->data
[2] = NULL
;
747 picture
->data
[3] = NULL
;
752 case PIX_FMT_RGB4_BYTE
:
753 case PIX_FMT_BGR4_BYTE
:
755 size2
= (size
+ 3) & ~3;
756 picture
->data
[0] = ptr
;
757 picture
->data
[1] = ptr
+ size2
; /* palette is stored here as 256 32 bit words */
758 picture
->data
[2] = NULL
;
759 picture
->data
[3] = NULL
;
760 return size2
+ 256 * 4;
762 picture
->data
[0] = NULL
;
763 picture
->data
[1] = NULL
;
764 picture
->data
[2] = NULL
;
765 picture
->data
[3] = NULL
;
770 int avpicture_fill(AVPicture
*picture
, uint8_t *ptr
,
771 enum PixelFormat pix_fmt
, int width
, int height
)
774 if(avcodec_check_dimensions(NULL
, width
, height
))
777 if (ff_fill_linesize(picture
, pix_fmt
, width
))
780 return ff_fill_pointer(picture
, ptr
, pix_fmt
, height
);
783 int avpicture_layout(const AVPicture
* src
, enum PixelFormat pix_fmt
, int width
, int height
,
784 unsigned char *dest
, int dest_size
)
786 const PixFmtInfo
* pf
= &pix_fmt_info
[pix_fmt
];
787 int i
, j
, w
, ow
, h
, oh
, data_planes
;
788 const unsigned char* s
;
789 int size
= avpicture_get_size(pix_fmt
, width
, height
);
791 if (size
> dest_size
|| size
< 0)
794 if (pf
->pixel_type
== FF_PIXEL_PACKED
|| pf
->pixel_type
== FF_PIXEL_PALETTE
) {
795 if (pix_fmt
== PIX_FMT_YUYV422
||
796 pix_fmt
== PIX_FMT_UYVY422
||
797 pix_fmt
== PIX_FMT_BGR565
||
798 pix_fmt
== PIX_FMT_BGR555
||
799 pix_fmt
== PIX_FMT_RGB565
||
800 pix_fmt
== PIX_FMT_RGB555
)
802 else if (pix_fmt
== PIX_FMT_UYYVYY411
)
804 else if (pix_fmt
== PIX_FMT_PAL8
)
807 w
= width
* (pf
->depth
* pf
->nb_channels
/ 8);
812 data_planes
= pf
->nb_channels
;
813 w
= (width
*pf
->depth
+ 7)/8;
820 for (i
=0; i
<data_planes
; i
++) {
822 w
= width
>> pf
->x_chroma_shift
;
823 h
= height
>> pf
->y_chroma_shift
;
832 s
+= src
->linesize
[i
];
836 if (pf
->pixel_type
== FF_PIXEL_PALETTE
)
837 memcpy((unsigned char *)(((size_t)dest
+ 3) & ~3), src
->data
[1], 256 * 4);
842 int avpicture_get_size(enum PixelFormat pix_fmt
, int width
, int height
)
844 AVPicture dummy_pict
;
845 if(avcodec_check_dimensions(NULL
, width
, height
))
850 case PIX_FMT_RGB4_BYTE
:
851 case PIX_FMT_BGR4_BYTE
:
853 // do not include palette for these pseudo-paletted formats
854 return width
* height
;
856 return avpicture_fill(&dummy_pict
, NULL
, pix_fmt
, width
, height
);
859 int avcodec_get_pix_fmt_loss(enum PixelFormat dst_pix_fmt
, enum PixelFormat src_pix_fmt
,
862 const PixFmtInfo
*pf
, *ps
;
865 ps
= &pix_fmt_info
[src_pix_fmt
];
866 pf
= &pix_fmt_info
[dst_pix_fmt
];
870 pf
= &pix_fmt_info
[dst_pix_fmt
];
871 if (pf
->depth
< ps
->depth
||
872 (dst_pix_fmt
== PIX_FMT_RGB555
&& src_pix_fmt
== PIX_FMT_RGB565
))
873 loss
|= FF_LOSS_DEPTH
;
874 if (pf
->x_chroma_shift
> ps
->x_chroma_shift
||
875 pf
->y_chroma_shift
> ps
->y_chroma_shift
)
876 loss
|= FF_LOSS_RESOLUTION
;
877 switch(pf
->color_type
) {
879 if (ps
->color_type
!= FF_COLOR_RGB
&&
880 ps
->color_type
!= FF_COLOR_GRAY
)
881 loss
|= FF_LOSS_COLORSPACE
;
884 if (ps
->color_type
!= FF_COLOR_GRAY
)
885 loss
|= FF_LOSS_COLORSPACE
;
888 if (ps
->color_type
!= FF_COLOR_YUV
)
889 loss
|= FF_LOSS_COLORSPACE
;
891 case FF_COLOR_YUV_JPEG
:
892 if (ps
->color_type
!= FF_COLOR_YUV_JPEG
&&
893 ps
->color_type
!= FF_COLOR_YUV
&&
894 ps
->color_type
!= FF_COLOR_GRAY
)
895 loss
|= FF_LOSS_COLORSPACE
;
899 if (ps
->color_type
!= pf
->color_type
)
900 loss
|= FF_LOSS_COLORSPACE
;
903 if (pf
->color_type
== FF_COLOR_GRAY
&&
904 ps
->color_type
!= FF_COLOR_GRAY
)
905 loss
|= FF_LOSS_CHROMA
;
906 if (!pf
->is_alpha
&& (ps
->is_alpha
&& has_alpha
))
907 loss
|= FF_LOSS_ALPHA
;
908 if (pf
->pixel_type
== FF_PIXEL_PALETTE
&&
909 (ps
->pixel_type
!= FF_PIXEL_PALETTE
&& ps
->color_type
!= FF_COLOR_GRAY
))
910 loss
|= FF_LOSS_COLORQUANT
;
914 static int avg_bits_per_pixel(enum PixelFormat pix_fmt
)
917 const PixFmtInfo
*pf
;
919 pf
= &pix_fmt_info
[pix_fmt
];
920 switch(pf
->pixel_type
) {
921 case FF_PIXEL_PACKED
:
923 case PIX_FMT_YUYV422
:
924 case PIX_FMT_UYVY422
:
931 case PIX_FMT_UYYVYY411
:
935 bits
= pf
->depth
* pf
->nb_channels
;
939 case FF_PIXEL_PLANAR
:
940 if (pf
->x_chroma_shift
== 0 && pf
->y_chroma_shift
== 0) {
941 bits
= pf
->depth
* pf
->nb_channels
;
943 bits
= pf
->depth
+ ((2 * pf
->depth
) >>
944 (pf
->x_chroma_shift
+ pf
->y_chroma_shift
));
947 case FF_PIXEL_PALETTE
:
957 static enum PixelFormat
avcodec_find_best_pix_fmt1(int64_t pix_fmt_mask
,
958 enum PixelFormat src_pix_fmt
,
962 int dist
, i
, loss
, min_dist
;
963 enum PixelFormat dst_pix_fmt
;
965 /* find exact color match with smallest size */
967 min_dist
= 0x7fffffff;
968 for(i
= 0;i
< PIX_FMT_NB
; i
++) {
969 if (pix_fmt_mask
& (1ULL << i
)) {
970 loss
= avcodec_get_pix_fmt_loss(i
, src_pix_fmt
, has_alpha
) & loss_mask
;
972 dist
= avg_bits_per_pixel(i
);
973 if (dist
< min_dist
) {
983 enum PixelFormat
avcodec_find_best_pix_fmt(int64_t pix_fmt_mask
, enum PixelFormat src_pix_fmt
,
984 int has_alpha
, int *loss_ptr
)
986 enum PixelFormat dst_pix_fmt
;
988 static const int loss_mask_order
[] = {
989 ~0, /* no loss first */
992 ~(FF_LOSS_COLORSPACE
| FF_LOSS_RESOLUTION
),
998 /* try with successive loss */
1001 loss_mask
= loss_mask_order
[i
++];
1002 dst_pix_fmt
= avcodec_find_best_pix_fmt1(pix_fmt_mask
, src_pix_fmt
,
1003 has_alpha
, loss_mask
);
1004 if (dst_pix_fmt
>= 0)
1012 *loss_ptr
= avcodec_get_pix_fmt_loss(dst_pix_fmt
, src_pix_fmt
, has_alpha
);
1016 void ff_img_copy_plane(uint8_t *dst
, int dst_wrap
,
1017 const uint8_t *src
, int src_wrap
,
1018 int width
, int height
)
1020 if((!dst
) || (!src
))
1022 for(;height
> 0; height
--) {
1023 memcpy(dst
, src
, width
);
1029 int ff_get_plane_bytewidth(enum PixelFormat pix_fmt
, int width
, int plane
)
1032 const PixFmtInfo
*pf
= &pix_fmt_info
[pix_fmt
];
1034 pf
= &pix_fmt_info
[pix_fmt
];
1035 switch(pf
->pixel_type
) {
1036 case FF_PIXEL_PACKED
:
1038 case PIX_FMT_YUYV422
:
1039 case PIX_FMT_UYVY422
:
1040 case PIX_FMT_RGB565
:
1041 case PIX_FMT_RGB555
:
1042 case PIX_FMT_BGR565
:
1043 case PIX_FMT_BGR555
:
1046 case PIX_FMT_UYYVYY411
:
1050 bits
= pf
->depth
* pf
->nb_channels
;
1053 return (width
* bits
+ 7) >> 3;
1055 case FF_PIXEL_PLANAR
:
1056 if (plane
== 1 || plane
== 2)
1057 width
= -((-width
)>>pf
->x_chroma_shift
);
1059 return (width
* pf
->depth
+ 7) >> 3;
1061 case FF_PIXEL_PALETTE
:
1070 void av_picture_copy(AVPicture
*dst
, const AVPicture
*src
,
1071 enum PixelFormat pix_fmt
, int width
, int height
)
1074 const PixFmtInfo
*pf
= &pix_fmt_info
[pix_fmt
];
1076 pf
= &pix_fmt_info
[pix_fmt
];
1077 switch(pf
->pixel_type
) {
1078 case FF_PIXEL_PACKED
:
1079 case FF_PIXEL_PLANAR
:
1080 for(i
= 0; i
< pf
->nb_channels
; i
++) {
1082 int bwidth
= ff_get_plane_bytewidth(pix_fmt
, width
, i
);
1084 if (i
== 1 || i
== 2) {
1085 h
= -((-height
)>>pf
->y_chroma_shift
);
1087 ff_img_copy_plane(dst
->data
[i
], dst
->linesize
[i
],
1088 src
->data
[i
], src
->linesize
[i
],
1092 case FF_PIXEL_PALETTE
:
1093 ff_img_copy_plane(dst
->data
[0], dst
->linesize
[0],
1094 src
->data
[0], src
->linesize
[0],
1096 /* copy the palette */
1097 ff_img_copy_plane(dst
->data
[1], dst
->linesize
[1],
1098 src
->data
[1], src
->linesize
[1],
1105 void ff_shrink22(uint8_t *dst
, int dst_wrap
,
1106 const uint8_t *src
, int src_wrap
,
1107 int width
, int height
)
1110 const uint8_t *s1
, *s2
;
1113 for(;height
> 0; height
--) {
1117 for(w
= width
;w
>= 4; w
-=4) {
1118 d
[0] = (s1
[0] + s1
[1] + s2
[0] + s2
[1] + 2) >> 2;
1119 d
[1] = (s1
[2] + s1
[3] + s2
[2] + s2
[3] + 2) >> 2;
1120 d
[2] = (s1
[4] + s1
[5] + s2
[4] + s2
[5] + 2) >> 2;
1121 d
[3] = (s1
[6] + s1
[7] + s2
[6] + s2
[7] + 2) >> 2;
1127 d
[0] = (s1
[0] + s1
[1] + s2
[0] + s2
[1] + 2) >> 2;
1132 src
+= 2 * src_wrap
;
1138 void ff_shrink44(uint8_t *dst
, int dst_wrap
,
1139 const uint8_t *src
, int src_wrap
,
1140 int width
, int height
)
1143 const uint8_t *s1
, *s2
, *s3
, *s4
;
1146 for(;height
> 0; height
--) {
1152 for(w
= width
;w
> 0; w
--) {
1153 d
[0] = (s1
[0] + s1
[1] + s1
[2] + s1
[3] +
1154 s2
[0] + s2
[1] + s2
[2] + s2
[3] +
1155 s3
[0] + s3
[1] + s3
[2] + s3
[3] +
1156 s4
[0] + s4
[1] + s4
[2] + s4
[3] + 8) >> 4;
1163 src
+= 4 * src_wrap
;
1169 void ff_shrink88(uint8_t *dst
, int dst_wrap
,
1170 const uint8_t *src
, int src_wrap
,
1171 int width
, int height
)
1175 for(;height
> 0; height
--) {
1176 for(w
= width
;w
> 0; w
--) {
1179 tmp
+= src
[0] + src
[1] + src
[2] + src
[3] + src
[4] + src
[5] + src
[6] + src
[7];
1182 *(dst
++) = (tmp
+ 32)>>6;
1183 src
+= 8 - 8*src_wrap
;
1185 src
+= 8*src_wrap
- 8*width
;
1186 dst
+= dst_wrap
- width
;
1191 int avpicture_alloc(AVPicture
*picture
,
1192 enum PixelFormat pix_fmt
, int width
, int height
)
1197 size
= avpicture_fill(picture
, NULL
, pix_fmt
, width
, height
);
1200 ptr
= av_malloc(size
);
1203 avpicture_fill(picture
, ptr
, pix_fmt
, width
, height
);
1204 if(picture
->data
[1] && !picture
->data
[2])
1205 ff_set_systematic_pal((uint32_t*)picture
->data
[1], pix_fmt
);
1209 memset(picture
, 0, sizeof(AVPicture
));
1213 void avpicture_free(AVPicture
*picture
)
1215 av_free(picture
->data
[0]);
1218 /* return true if yuv planar */
1219 static inline int is_yuv_planar(const PixFmtInfo
*ps
)
1221 return (ps
->color_type
== FF_COLOR_YUV
||
1222 ps
->color_type
== FF_COLOR_YUV_JPEG
) &&
1223 ps
->pixel_type
== FF_PIXEL_PLANAR
;
1226 int av_picture_crop(AVPicture
*dst
, const AVPicture
*src
,
1227 int pix_fmt
, int top_band
, int left_band
)
1232 if (pix_fmt
< 0 || pix_fmt
>= PIX_FMT_NB
|| !is_yuv_planar(&pix_fmt_info
[pix_fmt
]))
1235 y_shift
= pix_fmt_info
[pix_fmt
].y_chroma_shift
;
1236 x_shift
= pix_fmt_info
[pix_fmt
].x_chroma_shift
;
1238 dst
->data
[0] = src
->data
[0] + (top_band
* src
->linesize
[0]) + left_band
;
1239 dst
->data
[1] = src
->data
[1] + ((top_band
>> y_shift
) * src
->linesize
[1]) + (left_band
>> x_shift
);
1240 dst
->data
[2] = src
->data
[2] + ((top_band
>> y_shift
) * src
->linesize
[2]) + (left_band
>> x_shift
);
1242 dst
->linesize
[0] = src
->linesize
[0];
1243 dst
->linesize
[1] = src
->linesize
[1];
1244 dst
->linesize
[2] = src
->linesize
[2];
1248 int av_picture_pad(AVPicture
*dst
, const AVPicture
*src
, int height
, int width
,
1249 enum PixelFormat pix_fmt
, int padtop
, int padbottom
, int padleft
, int padright
,
1258 if (pix_fmt
< 0 || pix_fmt
>= PIX_FMT_NB
||
1259 !is_yuv_planar(&pix_fmt_info
[pix_fmt
])) return -1;
1261 for (i
= 0; i
< 3; i
++) {
1262 x_shift
= i
? pix_fmt_info
[pix_fmt
].x_chroma_shift
: 0;
1263 y_shift
= i
? pix_fmt_info
[pix_fmt
].y_chroma_shift
: 0;
1265 if (padtop
|| padleft
) {
1266 memset(dst
->data
[i
], color
[i
],
1267 dst
->linesize
[i
] * (padtop
>> y_shift
) + (padleft
>> x_shift
));
1270 if (padleft
|| padright
) {
1271 optr
= dst
->data
[i
] + dst
->linesize
[i
] * (padtop
>> y_shift
) +
1272 (dst
->linesize
[i
] - (padright
>> x_shift
));
1273 yheight
= (height
- 1 - (padtop
+ padbottom
)) >> y_shift
;
1274 for (y
= 0; y
< yheight
; y
++) {
1275 memset(optr
, color
[i
], (padleft
+ padright
) >> x_shift
);
1276 optr
+= dst
->linesize
[i
];
1280 if (src
) { /* first line */
1281 uint8_t *iptr
= src
->data
[i
];
1282 optr
= dst
->data
[i
] + dst
->linesize
[i
] * (padtop
>> y_shift
) +
1283 (padleft
>> x_shift
);
1284 memcpy(optr
, iptr
, (width
- padleft
- padright
) >> x_shift
);
1285 iptr
+= src
->linesize
[i
];
1286 optr
= dst
->data
[i
] + dst
->linesize
[i
] * (padtop
>> y_shift
) +
1287 (dst
->linesize
[i
] - (padright
>> x_shift
));
1288 yheight
= (height
- 1 - (padtop
+ padbottom
)) >> y_shift
;
1289 for (y
= 0; y
< yheight
; y
++) {
1290 memset(optr
, color
[i
], (padleft
+ padright
) >> x_shift
);
1291 memcpy(optr
+ ((padleft
+ padright
) >> x_shift
), iptr
,
1292 (width
- padleft
- padright
) >> x_shift
);
1293 iptr
+= src
->linesize
[i
];
1294 optr
+= dst
->linesize
[i
];
1298 if (padbottom
|| padright
) {
1299 optr
= dst
->data
[i
] + dst
->linesize
[i
] *
1300 ((height
- padbottom
) >> y_shift
) - (padright
>> x_shift
);
1301 memset(optr
, color
[i
],dst
->linesize
[i
] *
1302 (padbottom
>> y_shift
) + (padright
>> x_shift
));
1308 /* NOTE: we scan all the pixels to have an exact information */
1309 static int get_alpha_info_pal8(const AVPicture
*src
, int width
, int height
)
1311 const unsigned char *p
;
1312 int src_wrap
, ret
, x
, y
;
1314 uint32_t *palette
= (uint32_t *)src
->data
[1];
1317 src_wrap
= src
->linesize
[0] - width
;
1319 for(y
=0;y
<height
;y
++) {
1320 for(x
=0;x
<width
;x
++) {
1321 a
= palette
[p
[0]] >> 24;
1323 ret
|= FF_ALPHA_TRANSP
;
1324 } else if (a
!= 0xff) {
1325 ret
|= FF_ALPHA_SEMI_TRANSP
;
1334 int img_get_alpha_info(const AVPicture
*src
,
1335 enum PixelFormat pix_fmt
, int width
, int height
)
1337 const PixFmtInfo
*pf
= &pix_fmt_info
[pix_fmt
];
1340 pf
= &pix_fmt_info
[pix_fmt
];
1341 /* no alpha can be represented in format */
1346 ret
= get_alpha_info_pal8(src
, width
, height
);
1349 /* we do not know, so everything is indicated */
1350 ret
= FF_ALPHA_TRANSP
| FF_ALPHA_SEMI_TRANSP
;
1357 #define DEINT_INPLACE_LINE_LUM \
1358 movd_m2r(lum_m4[0],mm0);\
1359 movd_m2r(lum_m3[0],mm1);\
1360 movd_m2r(lum_m2[0],mm2);\
1361 movd_m2r(lum_m1[0],mm3);\
1362 movd_m2r(lum[0],mm4);\
1363 punpcklbw_r2r(mm7,mm0);\
1364 movd_r2m(mm2,lum_m4[0]);\
1365 punpcklbw_r2r(mm7,mm1);\
1366 punpcklbw_r2r(mm7,mm2);\
1367 punpcklbw_r2r(mm7,mm3);\
1368 punpcklbw_r2r(mm7,mm4);\
1369 paddw_r2r(mm3,mm1);\
1371 paddw_r2r(mm4,mm0);\
1373 paddw_r2r(mm6,mm2);\
1374 paddw_r2r(mm2,mm1);\
1375 psubusw_r2r(mm0,mm1);\
1377 packuswb_r2r(mm7,mm1);\
1378 movd_r2m(mm1,lum_m2[0]);
1380 #define DEINT_LINE_LUM \
1381 movd_m2r(lum_m4[0],mm0);\
1382 movd_m2r(lum_m3[0],mm1);\
1383 movd_m2r(lum_m2[0],mm2);\
1384 movd_m2r(lum_m1[0],mm3);\
1385 movd_m2r(lum[0],mm4);\
1386 punpcklbw_r2r(mm7,mm0);\
1387 punpcklbw_r2r(mm7,mm1);\
1388 punpcklbw_r2r(mm7,mm2);\
1389 punpcklbw_r2r(mm7,mm3);\
1390 punpcklbw_r2r(mm7,mm4);\
1391 paddw_r2r(mm3,mm1);\
1393 paddw_r2r(mm4,mm0);\
1395 paddw_r2r(mm6,mm2);\
1396 paddw_r2r(mm2,mm1);\
1397 psubusw_r2r(mm0,mm1);\
1399 packuswb_r2r(mm7,mm1);\
1400 movd_r2m(mm1,dst[0]);
1403 /* filter parameters: [-1 4 2 4 -1] // 8 */
1404 static void deinterlace_line(uint8_t *dst
,
1405 const uint8_t *lum_m4
, const uint8_t *lum_m3
,
1406 const uint8_t *lum_m2
, const uint8_t *lum_m1
,
1411 uint8_t *cm
= ff_cropTbl
+ MAX_NEG_CROP
;
1414 for(;size
> 0;size
--) {
1416 sum
+= lum_m3
[0] << 2;
1417 sum
+= lum_m2
[0] << 1;
1418 sum
+= lum_m1
[0] << 2;
1420 dst
[0] = cm
[(sum
+ 4) >> 3];
1432 movq_m2r(ff_pw_4
,mm6
);
1434 for (;size
> 3; size
-=4) {
1445 static void deinterlace_line_inplace(uint8_t *lum_m4
, uint8_t *lum_m3
, uint8_t *lum_m2
, uint8_t *lum_m1
, uint8_t *lum
,
1449 uint8_t *cm
= ff_cropTbl
+ MAX_NEG_CROP
;
1452 for(;size
> 0;size
--) {
1454 sum
+= lum_m3
[0] << 2;
1455 sum
+= lum_m2
[0] << 1;
1456 lum_m4
[0]=lum_m2
[0];
1457 sum
+= lum_m1
[0] << 2;
1459 lum_m2
[0] = cm
[(sum
+ 4) >> 3];
1470 movq_m2r(ff_pw_4
,mm6
);
1472 for (;size
> 3; size
-=4) {
1473 DEINT_INPLACE_LINE_LUM
1483 /* deinterlacing : 2 temporal taps, 3 spatial taps linear filter. The
1484 top field is copied as is, but the bottom field is deinterlaced
1485 against the top field. */
1486 static void deinterlace_bottom_field(uint8_t *dst
, int dst_wrap
,
1487 const uint8_t *src1
, int src_wrap
,
1488 int width
, int height
)
1490 const uint8_t *src_m2
, *src_m1
, *src_0
, *src_p1
, *src_p2
;
1495 src_0
=&src_m1
[src_wrap
];
1496 src_p1
=&src_0
[src_wrap
];
1497 src_p2
=&src_p1
[src_wrap
];
1498 for(y
=0;y
<(height
-2);y
+=2) {
1499 memcpy(dst
,src_m1
,width
);
1501 deinterlace_line(dst
,src_m2
,src_m1
,src_0
,src_p1
,src_p2
,width
);
1505 src_p1
+= 2*src_wrap
;
1506 src_p2
+= 2*src_wrap
;
1509 memcpy(dst
,src_m1
,width
);
1512 deinterlace_line(dst
,src_m2
,src_m1
,src_0
,src_0
,src_0
,width
);
1515 static void deinterlace_bottom_field_inplace(uint8_t *src1
, int src_wrap
,
1516 int width
, int height
)
1518 uint8_t *src_m1
, *src_0
, *src_p1
, *src_p2
;
1521 buf
= (uint8_t*)av_malloc(width
);
1524 memcpy(buf
,src_m1
,width
);
1525 src_0
=&src_m1
[src_wrap
];
1526 src_p1
=&src_0
[src_wrap
];
1527 src_p2
=&src_p1
[src_wrap
];
1528 for(y
=0;y
<(height
-2);y
+=2) {
1529 deinterlace_line_inplace(buf
,src_m1
,src_0
,src_p1
,src_p2
,width
);
1532 src_p1
+= 2*src_wrap
;
1533 src_p2
+= 2*src_wrap
;
1536 deinterlace_line_inplace(buf
,src_m1
,src_0
,src_0
,src_0
,width
);
1540 int avpicture_deinterlace(AVPicture
*dst
, const AVPicture
*src
,
1541 enum PixelFormat pix_fmt
, int width
, int height
)
1545 if (pix_fmt
!= PIX_FMT_YUV420P
&&
1546 pix_fmt
!= PIX_FMT_YUV422P
&&
1547 pix_fmt
!= PIX_FMT_YUV444P
&&
1548 pix_fmt
!= PIX_FMT_YUV411P
&&
1549 pix_fmt
!= PIX_FMT_GRAY8
)
1551 if ((width
& 3) != 0 || (height
& 3) != 0)
1557 case PIX_FMT_YUV420P
:
1561 case PIX_FMT_YUV422P
:
1564 case PIX_FMT_YUV411P
:
1570 if (pix_fmt
== PIX_FMT_GRAY8
) {
1575 deinterlace_bottom_field_inplace(dst
->data
[i
], dst
->linesize
[i
],
1578 deinterlace_bottom_field(dst
->data
[i
],dst
->linesize
[i
],
1579 src
->data
[i
], src
->linesize
[i
],