annotate imgconvert.c @ 12299:6c42dc376222 libavcodec

Make avpicture_fill() directly call av_fill_image_linesizes() and av_fill_image_pointers() rather than their wrappers ff_fill_linesize() and ff_fill_pointer(). Improve performance.
author stefano
date Fri, 30 Jul 2010 08:42:08 +0000
parents bfc36c0fea55
children b01d01738bc4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
1 /*
5355
45d083bbbbe7 typo fixes
diego
parents: 5354
diff changeset
2 * Misc image conversion routines
8629
04423b2f6e0b cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents: 8601
diff changeset
3 * Copyright (c) 2001, 2002, 2003 Fabrice Bellard
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
4 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3646
diff changeset
5 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3646
diff changeset
6 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3646
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
9 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3646
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
11 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3646
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
15 * Lesser General Public License for more details.
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
16 *
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3646
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
3036
0b546eab515d Update licensing information: The FSF changed postal address.
diego
parents: 2979
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
20 */
1106
1e39f273ecd6 per file doxy
michaelni
parents: 1073
diff changeset
21
1e39f273ecd6 per file doxy
michaelni
parents: 1073
diff changeset
22 /**
11644
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 11630
diff changeset
23 * @file
5355
45d083bbbbe7 typo fixes
diego
parents: 5354
diff changeset
24 * misc image conversion routines
1106
1e39f273ecd6 per file doxy
michaelni
parents: 1073
diff changeset
25 */
1e39f273ecd6 per file doxy
michaelni
parents: 1073
diff changeset
26
1203
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
27 /* TODO:
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
28 * - write 'ffimg' program to test all the image related stuff
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
29 * - move all api to slice based system
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
30 * - integrate deinterlacing, postprocessing and scaling in the conversion process
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
31 */
1106
1e39f273ecd6 per file doxy
michaelni
parents: 1073
diff changeset
32
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
33 #include "avcodec.h"
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
34 #include "dsputil.h"
11318
ad0ea9f21f9a Include internal.h and imgconvert.h, they contain the prototypes for the
cehoyos
parents: 11059
diff changeset
35 #include "internal.h"
ad0ea9f21f9a Include internal.h and imgconvert.h, they contain the prototypes for the
cehoyos
parents: 11059
diff changeset
36 #include "imgconvert.h"
12039
d5705b52b76e Move colorspace.h from libavcodec to libavutil.
stefano
parents: 11842
diff changeset
37 #include "libavutil/colorspace.h"
10572
a21b640dba50 Use av_pix_fmt_descriptors in ff_is_hwaccel_pix_fmt() rather than
stefano
parents: 10569
diff changeset
38 #include "libavutil/pixdesc.h"
12298
bfc36c0fea55 Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents: 12277
diff changeset
39 #include "libavcore/imgutils.h"
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
40
8590
7a463923ecd1 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 8522
diff changeset
41 #if HAVE_MMX
8430
7768bdfd4f7b Rename libavcodec/i386/ --> libavcodec/x86/.
diego
parents: 8321
diff changeset
42 #include "x86/mmx.h"
7768bdfd4f7b Rename libavcodec/i386/ --> libavcodec/x86/.
diego
parents: 8321
diff changeset
43 #include "x86/dsputil_mmx.h"
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
44 #endif
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
45
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
46 #define xglue(x, y) x ## y
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
47 #define glue(x, y) xglue(x, y)
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
48
4549
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
49 #define FF_COLOR_RGB 0 /**< RGB color space */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
50 #define FF_COLOR_GRAY 1 /**< gray color space */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
51 #define FF_COLOR_YUV 2 /**< YUV color space. 16 <= Y <= 235, 16 <= U, V <= 240 */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
52 #define FF_COLOR_YUV_JPEG 3 /**< YUV color space. 0 <= Y <= 255, 0 <= U, V <= 255 */
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
53
4549
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
54 #define FF_PIXEL_PLANAR 0 /**< each channel has one component in AVPicture */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
55 #define FF_PIXEL_PACKED 1 /**< only one components containing all the channels */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
56 #define FF_PIXEL_PALETTE 2 /**< one components containing indexes for a palette */
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
57
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
58 typedef struct PixFmtInfo {
4549
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
59 uint8_t nb_channels; /**< number of channels (including alpha) */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
60 uint8_t color_type; /**< color type (see FF_COLOR_xxx constants) */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
61 uint8_t pixel_type; /**< pixel storage type (see FF_PIXEL_xxx constants) */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
62 uint8_t is_alpha : 1; /**< true if alpha can be specified */
48442cb0ebfa add doxygen docs for avpicture_fill()
gpoirier
parents: 4517
diff changeset
63 uint8_t depth; /**< bit depth of the color components */
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
64 } PixFmtInfo;
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
65
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
66 /* this table gives more information about formats */
3420
54814e15aa3d Mark some read-only datastructures as const.
diego
parents: 3266
diff changeset
67 static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = {
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
68 /* YUV formats */
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
69 [PIX_FMT_YUV420P] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
70 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
71 .color_type = FF_COLOR_YUV,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
72 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
73 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
74 },
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
75 [PIX_FMT_YUV422P] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
76 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
77 .color_type = FF_COLOR_YUV,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
78 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
79 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
80 },
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
81 [PIX_FMT_YUV444P] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
82 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
83 .color_type = FF_COLOR_YUV,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
84 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
85 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
86 },
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4359
diff changeset
87 [PIX_FMT_YUYV422] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
88 .nb_channels = 1,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
89 .color_type = FF_COLOR_YUV,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
90 .pixel_type = FF_PIXEL_PACKED,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
91 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
92 },
2137
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
93 [PIX_FMT_UYVY422] = {
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
94 .nb_channels = 1,
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
95 .color_type = FF_COLOR_YUV,
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
96 .pixel_type = FF_PIXEL_PACKED,
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
97 .depth = 8,
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
98 },
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
99 [PIX_FMT_YUV410P] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
100 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
101 .color_type = FF_COLOR_YUV,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
102 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
103 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
104 },
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
105 [PIX_FMT_YUV411P] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
106 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
107 .color_type = FF_COLOR_YUV,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
108 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
109 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
110 },
5363
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
111 [PIX_FMT_YUV440P] = {
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
112 .nb_channels = 3,
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
113 .color_type = FF_COLOR_YUV,
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
114 .pixel_type = FF_PIXEL_PLANAR,
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
115 .depth = 8,
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
116 },
10136
399b5d6b5439 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 10043
diff changeset
117 [PIX_FMT_YUV420P16LE] = {
9519
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
118 .nb_channels = 3,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
119 .color_type = FF_COLOR_YUV,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
120 .pixel_type = FF_PIXEL_PLANAR,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
121 .depth = 16,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
122 },
10136
399b5d6b5439 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 10043
diff changeset
123 [PIX_FMT_YUV422P16LE] = {
9519
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
124 .nb_channels = 3,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
125 .color_type = FF_COLOR_YUV,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
126 .pixel_type = FF_PIXEL_PLANAR,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
127 .depth = 16,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
128 },
10136
399b5d6b5439 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 10043
diff changeset
129 [PIX_FMT_YUV444P16LE] = {
9519
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
130 .nb_channels = 3,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
131 .color_type = FF_COLOR_YUV,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
132 .pixel_type = FF_PIXEL_PLANAR,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
133 .depth = 16,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
134 },
10136
399b5d6b5439 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 10043
diff changeset
135 [PIX_FMT_YUV420P16BE] = {
9519
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
136 .nb_channels = 3,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
137 .color_type = FF_COLOR_YUV,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
138 .pixel_type = FF_PIXEL_PLANAR,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
139 .depth = 16,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
140 },
10136
399b5d6b5439 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 10043
diff changeset
141 [PIX_FMT_YUV422P16BE] = {
9519
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
142 .nb_channels = 3,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
143 .color_type = FF_COLOR_YUV,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
144 .pixel_type = FF_PIXEL_PLANAR,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
145 .depth = 16,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
146 },
10136
399b5d6b5439 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 10043
diff changeset
147 [PIX_FMT_YUV444P16BE] = {
9519
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
148 .nb_channels = 3,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
149 .color_type = FF_COLOR_YUV,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
150 .pixel_type = FF_PIXEL_PLANAR,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
151 .depth = 16,
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
152 },
d42979883bb1 Add 420,422 and 444 planar 16bit per component pix formats.
michael
parents: 9483
diff changeset
153
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
154
5706
3e8764a25c53 add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents: 5363
diff changeset
155 /* YUV formats with alpha plane */
3e8764a25c53 add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents: 5363
diff changeset
156 [PIX_FMT_YUVA420P] = {
3e8764a25c53 add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents: 5363
diff changeset
157 .nb_channels = 4,
3e8764a25c53 add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents: 5363
diff changeset
158 .color_type = FF_COLOR_YUV,
3e8764a25c53 add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents: 5363
diff changeset
159 .pixel_type = FF_PIXEL_PLANAR,
3e8764a25c53 add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents: 5363
diff changeset
160 .depth = 8,
3e8764a25c53 add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents: 5363
diff changeset
161 },
3e8764a25c53 add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents: 5363
diff changeset
162
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
163 /* JPEG YUV */
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
164 [PIX_FMT_YUVJ420P] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
165 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
166 .color_type = FF_COLOR_YUV_JPEG,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
167 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
168 .depth = 8,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
169 },
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
170 [PIX_FMT_YUVJ422P] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
171 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
172 .color_type = FF_COLOR_YUV_JPEG,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
173 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
174 .depth = 8,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
175 },
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
176 [PIX_FMT_YUVJ444P] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
177 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
178 .color_type = FF_COLOR_YUV_JPEG,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
179 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
180 .depth = 8,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
181 },
5363
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
182 [PIX_FMT_YUVJ440P] = {
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
183 .nb_channels = 3,
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
184 .color_type = FF_COLOR_YUV_JPEG,
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
185 .pixel_type = FF_PIXEL_PLANAR,
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
186 .depth = 8,
1a25f2f6316e add YUV440P and YUVJ440P support
benoit
parents: 5355
diff changeset
187 },
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
188
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
189 /* RGB formats */
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
190 [PIX_FMT_RGB24] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
191 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
192 .color_type = FF_COLOR_RGB,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
193 .pixel_type = FF_PIXEL_PACKED,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
194 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
195 },
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
196 [PIX_FMT_BGR24] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
197 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
198 .color_type = FF_COLOR_RGB,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
199 .pixel_type = FF_PIXEL_PACKED,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
200 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
201 },
9245
b5d1395879a0 Make the pixel formats which were defined as macros:
stefano
parents: 9242
diff changeset
202 [PIX_FMT_ARGB] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
203 .nb_channels = 4, .is_alpha = 1,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
204 .color_type = FF_COLOR_RGB,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
205 .pixel_type = FF_PIXEL_PACKED,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
206 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
207 },
9001
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
208 [PIX_FMT_RGB48BE] = {
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
209 .nb_channels = 3,
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
210 .color_type = FF_COLOR_RGB,
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
211 .pixel_type = FF_PIXEL_PACKED,
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
212 .depth = 16,
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
213 },
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
214 [PIX_FMT_RGB48LE] = {
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
215 .nb_channels = 3,
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
216 .color_type = FF_COLOR_RGB,
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
217 .pixel_type = FF_PIXEL_PACKED,
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
218 .depth = 16,
ec04c3c5a3e5 Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.
pross
parents: 8788
diff changeset
219 },
9223
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
220 [PIX_FMT_RGB565BE] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
221 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
222 .color_type = FF_COLOR_RGB,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
223 .pixel_type = FF_PIXEL_PACKED,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
224 .depth = 5,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
225 },
9223
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
226 [PIX_FMT_RGB565LE] = {
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
227 .nb_channels = 3,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
228 .color_type = FF_COLOR_RGB,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
229 .pixel_type = FF_PIXEL_PACKED,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
230 .depth = 5,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
231 },
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
232 [PIX_FMT_RGB555BE] = {
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
233 .nb_channels = 3,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
234 .color_type = FF_COLOR_RGB,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
235 .pixel_type = FF_PIXEL_PACKED,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
236 .depth = 5,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
237 },
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
238 [PIX_FMT_RGB555LE] = {
4208
45e0102824fb Remove alpha channel from RGB555
alex
parents: 4207
diff changeset
239 .nb_channels = 3,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
240 .color_type = FF_COLOR_RGB,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
241 .pixel_type = FF_PIXEL_PACKED,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
242 .depth = 5,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
243 },
11366
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
244 [PIX_FMT_RGB444BE] = {
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
245 .nb_channels = 3,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
246 .color_type = FF_COLOR_RGB,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
247 .pixel_type = FF_PIXEL_PACKED,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
248 .depth = 4,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
249 },
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
250 [PIX_FMT_RGB444LE] = {
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
251 .nb_channels = 3,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
252 .color_type = FF_COLOR_RGB,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
253 .pixel_type = FF_PIXEL_PACKED,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
254 .depth = 4,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
255 },
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
256
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
257 /* gray / mono formats */
4066
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
258 [PIX_FMT_GRAY16BE] = {
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
259 .nb_channels = 1,
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
260 .color_type = FF_COLOR_GRAY,
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
261 .pixel_type = FF_PIXEL_PLANAR,
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
262 .depth = 16,
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
263 },
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
264 [PIX_FMT_GRAY16LE] = {
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
265 .nb_channels = 1,
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
266 .color_type = FF_COLOR_GRAY,
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
267 .pixel_type = FF_PIXEL_PLANAR,
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
268 .depth = 16,
a3f06c7a0bff 16-bit grayscale support
kostya
parents: 3947
diff changeset
269 },
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
270 [PIX_FMT_GRAY8] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
271 .nb_channels = 1,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
272 .color_type = FF_COLOR_GRAY,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
273 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
274 .depth = 8,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
275 },
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
276 [PIX_FMT_MONOWHITE] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
277 .nb_channels = 1,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
278 .color_type = FF_COLOR_GRAY,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
279 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
280 .depth = 1,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
281 },
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
282 [PIX_FMT_MONOBLACK] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
283 .nb_channels = 1,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
284 .color_type = FF_COLOR_GRAY,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
285 .pixel_type = FF_PIXEL_PLANAR,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
286 .depth = 1,
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
287 },
1055
6261fdd1f69d added paletted 8 bit format support
bellard
parents: 1052
diff changeset
288
6261fdd1f69d added paletted 8 bit format support
bellard
parents: 1052
diff changeset
289 /* paletted formats */
6261fdd1f69d added paletted 8 bit format support
bellard
parents: 1052
diff changeset
290 [PIX_FMT_PAL8] = {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
291 .nb_channels = 4, .is_alpha = 1,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
292 .color_type = FF_COLOR_RGB,
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
293 .pixel_type = FF_PIXEL_PALETTE,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
294 .depth = 8,
1055
6261fdd1f69d added paletted 8 bit format support
bellard
parents: 1052
diff changeset
295 },
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4359
diff changeset
296 [PIX_FMT_UYYVYY411] = {
2309
550ae8914fd3 * Introducing IIDC1394 grabbing interface.
romansh
parents: 2179
diff changeset
297 .nb_channels = 1,
550ae8914fd3 * Introducing IIDC1394 grabbing interface.
romansh
parents: 2179
diff changeset
298 .color_type = FF_COLOR_YUV,
550ae8914fd3 * Introducing IIDC1394 grabbing interface.
romansh
parents: 2179
diff changeset
299 .pixel_type = FF_PIXEL_PACKED,
550ae8914fd3 * Introducing IIDC1394 grabbing interface.
romansh
parents: 2179
diff changeset
300 .depth = 8,
550ae8914fd3 * Introducing IIDC1394 grabbing interface.
romansh
parents: 2179
diff changeset
301 },
9245
b5d1395879a0 Make the pixel formats which were defined as macros:
stefano
parents: 9242
diff changeset
302 [PIX_FMT_ABGR] = {
3646
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
303 .nb_channels = 4, .is_alpha = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
304 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
305 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
306 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
307 },
9223
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
308 [PIX_FMT_BGR565BE] = {
3646
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
309 .nb_channels = 3,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
310 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
311 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
312 .depth = 5,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
313 },
9223
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
314 [PIX_FMT_BGR565LE] = {
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
315 .nb_channels = 3,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
316 .color_type = FF_COLOR_RGB,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
317 .pixel_type = FF_PIXEL_PACKED,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
318 .depth = 5,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
319 },
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
320 [PIX_FMT_BGR555BE] = {
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
321 .nb_channels = 3,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
322 .color_type = FF_COLOR_RGB,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
323 .pixel_type = FF_PIXEL_PACKED,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
324 .depth = 5,
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
325 },
53f2c0f6e71d Change the RGB5X5/BGR5X5 pixel format defines so that we have little
stefano
parents: 9222
diff changeset
326 [PIX_FMT_BGR555LE] = {
4207
bc9de4875ebd BGR555 has never been working as alpha supporting format. Remove the false setting.
alex
parents: 4201
diff changeset
327 .nb_channels = 3,
3646
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
328 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
329 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
330 .depth = 5,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
331 },
11366
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
332 [PIX_FMT_BGR444BE] = {
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
333 .nb_channels = 3,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
334 .color_type = FF_COLOR_RGB,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
335 .pixel_type = FF_PIXEL_PACKED,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
336 .depth = 4,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
337 },
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
338 [PIX_FMT_BGR444LE] = {
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
339 .nb_channels = 3,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
340 .color_type = FF_COLOR_RGB,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
341 .pixel_type = FF_PIXEL_PACKED,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
342 .depth = 4,
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
343 },
3646
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
344 [PIX_FMT_RGB8] = {
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
345 .nb_channels = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
346 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
347 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
348 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
349 },
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
350 [PIX_FMT_RGB4] = {
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
351 .nb_channels = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
352 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
353 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
354 .depth = 4,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
355 },
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
356 [PIX_FMT_RGB4_BYTE] = {
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
357 .nb_channels = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
358 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
359 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
360 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
361 },
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
362 [PIX_FMT_BGR8] = {
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
363 .nb_channels = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
364 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
365 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
366 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
367 },
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
368 [PIX_FMT_BGR4] = {
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
369 .nb_channels = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
370 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
371 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
372 .depth = 4,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
373 },
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
374 [PIX_FMT_BGR4_BYTE] = {
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
375 .nb_channels = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
376 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
377 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
378 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
379 },
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
380 [PIX_FMT_NV12] = {
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
381 .nb_channels = 2,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
382 .color_type = FF_COLOR_YUV,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
383 .pixel_type = FF_PIXEL_PLANAR,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
384 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
385 },
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
386 [PIX_FMT_NV21] = {
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
387 .nb_channels = 2,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
388 .color_type = FF_COLOR_YUV,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
389 .pixel_type = FF_PIXEL_PLANAR,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
390 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
391 },
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
392
9245
b5d1395879a0 Make the pixel formats which were defined as macros:
stefano
parents: 9242
diff changeset
393 [PIX_FMT_BGRA] = {
3646
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
394 .nb_channels = 4, .is_alpha = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
395 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
396 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
397 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
398 },
9245
b5d1395879a0 Make the pixel formats which were defined as macros:
stefano
parents: 9242
diff changeset
399 [PIX_FMT_RGBA] = {
3646
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
400 .nb_channels = 4, .is_alpha = 1,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
401 .color_type = FF_COLOR_RGB,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
402 .pixel_type = FF_PIXEL_PACKED,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
403 .depth = 8,
e324e5ce41a1 Minimal support for the new pixel formats in libavcodec
lucabe
parents: 3589
diff changeset
404 },
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
405 };
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
406
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
407 void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int *v_shift)
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
408 {
10573
ac49ab818d4d Use av_pix_fmt_descriptors in avcodec_get_chroma_sub_sample(), rather
stefano
parents: 10572
diff changeset
409 *h_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_w;
ac49ab818d4d Use av_pix_fmt_descriptors in avcodec_get_chroma_sub_sample(), rather
stefano
parents: 10572
diff changeset
410 *v_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h;
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
411 }
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
412
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
413 const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt)
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
414 {
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
415 if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB)
7463
5515e19b9137 Add graceful error handling to avcodec_get_pix_fmt_name() and avcodec_get_pix_fmt().
pross
parents: 6963
diff changeset
416 return NULL;
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
417 else
10579
dacdec913c5b Make avcodec_get_pix_fmt_name() use av_pix_fmt_descriptors rather than
stefano
parents: 10577
diff changeset
418 return av_pix_fmt_descriptors[pix_fmt].name;
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
419 }
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
420
11059
e1bc53867092 Implement av_get_pix_fmt(), and deprecate avcodec_get_pix_fmt().
stefano
parents: 10682
diff changeset
421 #if LIBAVCODEC_VERSION_MAJOR < 53
9222
e314914641bc Extend the behavior of avcodec_get_pix_fmt(), if it cannot find a
stefano
parents: 9221
diff changeset
422 enum PixelFormat avcodec_get_pix_fmt(const char *name)
e314914641bc Extend the behavior of avcodec_get_pix_fmt(), if it cannot find a
stefano
parents: 9221
diff changeset
423 {
11059
e1bc53867092 Implement av_get_pix_fmt(), and deprecate avcodec_get_pix_fmt().
stefano
parents: 10682
diff changeset
424 return av_get_pix_fmt(name);
9222
e314914641bc Extend the behavior of avcodec_get_pix_fmt(), if it cannot find a
stefano
parents: 9221
diff changeset
425 }
11059
e1bc53867092 Implement av_get_pix_fmt(), and deprecate avcodec_get_pix_fmt().
stefano
parents: 10682
diff changeset
426 #endif
9222
e314914641bc Extend the behavior of avcodec_get_pix_fmt(), if it cannot find a
stefano
parents: 9221
diff changeset
427
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
428 void avcodec_pix_fmt_string (char *buf, int buf_size, enum PixelFormat pix_fmt)
5084
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
429 {
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
430 /* print header */
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
431 if (pix_fmt < 0)
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
432 snprintf (buf, buf_size,
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
433 "name " " nb_channels" " depth" " is_alpha"
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
434 );
6911
0e2576b1e753 Do not read from prior the array, fix CID 127.
michael
parents: 6750
diff changeset
435 else{
0e2576b1e753 Do not read from prior the array, fix CID 127.
michael
parents: 6750
diff changeset
436 PixFmtInfo info= pix_fmt_info[pix_fmt];
0e2576b1e753 Do not read from prior the array, fix CID 127.
michael
parents: 6750
diff changeset
437
0e2576b1e753 Do not read from prior the array, fix CID 127.
michael
parents: 6750
diff changeset
438 char is_alpha_char= info.is_alpha ? 'y' : 'n';
0e2576b1e753 Do not read from prior the array, fix CID 127.
michael
parents: 6750
diff changeset
439
5084
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
440 snprintf (buf, buf_size,
10277
ddd69069dfa5 simplify format string for writing pix_fmt string.
jbr
parents: 10271
diff changeset
441 "%-11s %5d %9d %6c",
10583
96d1d05cfd37 Use pixel formats names defined in av_pix_fmt_descriptors rather than
stefano
parents: 10582
diff changeset
442 av_pix_fmt_descriptors[pix_fmt].name,
5084
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
443 info.nb_channels,
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
444 info.depth,
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
445 is_alpha_char
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
446 );
6911
0e2576b1e753 Do not read from prior the array, fix CID 127.
michael
parents: 6750
diff changeset
447 }
5084
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
448 }
9930b7031cb2 Add support for listing the supported pixel formats using the option
benoit
parents: 5077
diff changeset
449
9011
90c99bda19f5 Approved hunks for VAAPI / our new shiny hwaccel API
michael
parents: 9007
diff changeset
450 int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt)
90c99bda19f5 Approved hunks for VAAPI / our new shiny hwaccel API
michael
parents: 9007
diff changeset
451 {
10572
a21b640dba50 Use av_pix_fmt_descriptors in ff_is_hwaccel_pix_fmt() rather than
stefano
parents: 10569
diff changeset
452 return av_pix_fmt_descriptors[pix_fmt].flags & PIX_FMT_HWACCEL;
9011
90c99bda19f5 Approved hunks for VAAPI / our new shiny hwaccel API
michael
parents: 9007
diff changeset
453 }
90c99bda19f5 Approved hunks for VAAPI / our new shiny hwaccel API
michael
parents: 9007
diff changeset
454
8748
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
455 int ff_set_systematic_pal(uint32_t pal[256], enum PixelFormat pix_fmt){
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
456 int i;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
457
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
458 for(i=0; i<256; i++){
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
459 int r,g,b;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
460
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
461 switch(pix_fmt) {
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
462 case PIX_FMT_RGB8:
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
463 r= (i>>5 )*36;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
464 g= ((i>>2)&7)*36;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
465 b= (i&3 )*85;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
466 break;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
467 case PIX_FMT_BGR8:
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
468 b= (i>>6 )*85;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
469 g= ((i>>3)&7)*36;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
470 r= (i&7 )*36;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
471 break;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
472 case PIX_FMT_RGB4_BYTE:
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
473 r= (i>>3 )*255;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
474 g= ((i>>1)&3)*85;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
475 b= (i&1 )*255;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
476 break;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
477 case PIX_FMT_BGR4_BYTE:
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
478 b= (i>>3 )*255;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
479 g= ((i>>1)&3)*85;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
480 r= (i&1 )*255;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
481 break;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
482 case PIX_FMT_GRAY8:
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
483 r=b=g= i;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
484 break;
8788
5e9e735cd793 Add a default (error) for the switch in case of an unsupported PIX_FMT.
gpoirier
parents: 8748
diff changeset
485 default:
5e9e735cd793 Add a default (error) for the switch in case of an unsupported PIX_FMT.
gpoirier
parents: 8748
diff changeset
486 return -1;
8748
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
487 }
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
488 pal[i] = b + (g<<8) + (r<<16);
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
489 }
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
490
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
491 return 0;
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
492 }
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
493
12277
17adb33ac603 Define static functions fill_image_linesize() and
stefano
parents: 12039
diff changeset
494 int ff_fill_linesize(AVPicture *picture, enum PixelFormat pix_fmt, int width)
17adb33ac603 Define static functions fill_image_linesize() and
stefano
parents: 12039
diff changeset
495 {
12298
bfc36c0fea55 Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents: 12277
diff changeset
496 return av_fill_image_linesizes(picture->linesize, pix_fmt, width);
993
895d3b01c6f4 added missing formats in all functions - added monoblack, monowhite and gray8 support for most conversions
bellard
parents: 989
diff changeset
497 }
895d3b01c6f4 added missing formats in all functions - added monoblack, monowhite and gray8 support for most conversions
bellard
parents: 989
diff changeset
498
12277
17adb33ac603 Define static functions fill_image_linesize() and
stefano
parents: 12039
diff changeset
499 int ff_fill_pointer(AVPicture *picture, uint8_t *ptr, enum PixelFormat pix_fmt,
17adb33ac603 Define static functions fill_image_linesize() and
stefano
parents: 12039
diff changeset
500 int height)
17adb33ac603 Define static functions fill_image_linesize() and
stefano
parents: 12039
diff changeset
501 {
12298
bfc36c0fea55 Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents: 12277
diff changeset
502 return av_fill_image_pointers(picture->data, pix_fmt, height, ptr, picture->linesize);
12277
17adb33ac603 Define static functions fill_image_linesize() and
stefano
parents: 12039
diff changeset
503 }
17adb33ac603 Define static functions fill_image_linesize() and
stefano
parents: 12039
diff changeset
504
6356
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
505 int avpicture_fill(AVPicture *picture, uint8_t *ptr,
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
506 enum PixelFormat pix_fmt, int width, int height)
6356
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
507 {
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
508
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
509 if(avcodec_check_dimensions(NULL, width, height))
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
510 return -1;
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
511
12299
6c42dc376222 Make avpicture_fill() directly call av_fill_image_linesizes() and
stefano
parents: 12298
diff changeset
512 if (av_fill_image_linesizes(picture->linesize, pix_fmt, width))
6356
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
513 return -1;
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
514
12299
6c42dc376222 Make avpicture_fill() directly call av_fill_image_linesizes() and
stefano
parents: 12298
diff changeset
515 return av_fill_image_pointers(picture->data, pix_fmt, height, ptr, picture->linesize);
6356
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
516 }
afa99894d8d9 Split avpicture_fill() in two functions. This will be
vitor
parents: 6350
diff changeset
517
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
518 int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width, int height,
1231
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
519 unsigned char *dest, int dest_size)
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
520 {
3420
54814e15aa3d Mark some read-only datastructures as const.
diego
parents: 3266
diff changeset
521 const PixFmtInfo* pf = &pix_fmt_info[pix_fmt];
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
522 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
9070
87f496299f09 Fix avpicture_layout to not chroma shift the alpha plane when outputting YUVA420P
sdrik
parents: 9061
diff changeset
523 int i, j, w, ow, h, oh, data_planes;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
524 const unsigned char* s;
1231
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
525 int size = avpicture_get_size(pix_fmt, width, height);
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
526
2422
18b8b2dcc037 various security fixes and precautionary checks
michael
parents: 2366
diff changeset
527 if (size > dest_size || size < 0)
1231
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
528 return -1;
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
529
1243
5d2376294fbf * fixing a bug in avpicture_layout (PAL8 wasn't handled properly)
romansh
parents: 1231
diff changeset
530 if (pf->pixel_type == FF_PIXEL_PACKED || pf->pixel_type == FF_PIXEL_PALETTE) {
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4359
diff changeset
531 if (pix_fmt == PIX_FMT_YUYV422 ||
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
532 pix_fmt == PIX_FMT_UYVY422 ||
10043
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
533 pix_fmt == PIX_FMT_BGR565BE ||
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
534 pix_fmt == PIX_FMT_BGR565LE ||
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
535 pix_fmt == PIX_FMT_BGR555BE ||
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
536 pix_fmt == PIX_FMT_BGR555LE ||
11366
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
537 pix_fmt == PIX_FMT_BGR444BE ||
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
538 pix_fmt == PIX_FMT_BGR444LE ||
10043
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
539 pix_fmt == PIX_FMT_RGB565BE ||
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
540 pix_fmt == PIX_FMT_RGB565LE ||
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
541 pix_fmt == PIX_FMT_RGB555BE ||
11366
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
542 pix_fmt == PIX_FMT_RGB555LE ||
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
543 pix_fmt == PIX_FMT_RGB444BE ||
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
544 pix_fmt == PIX_FMT_RGB444LE)
2137
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
545 w = width * 2;
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4359
diff changeset
546 else if (pix_fmt == PIX_FMT_UYYVYY411)
10546
ramiro
parents: 10540
diff changeset
547 w = width + width/2;
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
548 else if (pix_fmt == PIX_FMT_PAL8)
10546
ramiro
parents: 10540
diff changeset
549 w = width;
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
550 else
10546
ramiro
parents: 10540
diff changeset
551 w = width * (pf->depth * pf->nb_channels / 8);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
552
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
553 data_planes = 1;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
554 h = height;
1231
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
555 } else {
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
556 data_planes = pf->nb_channels;
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
557 w = (width*pf->depth + 7)/8;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
558 h = height;
1231
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
559 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
560
9070
87f496299f09 Fix avpicture_layout to not chroma shift the alpha plane when outputting YUVA420P
sdrik
parents: 9061
diff changeset
561 ow = w;
87f496299f09 Fix avpicture_layout to not chroma shift the alpha plane when outputting YUVA420P
sdrik
parents: 9061
diff changeset
562 oh = h;
87f496299f09 Fix avpicture_layout to not chroma shift the alpha plane when outputting YUVA420P
sdrik
parents: 9061
diff changeset
563
1231
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
564 for (i=0; i<data_planes; i++) {
10546
ramiro
parents: 10540
diff changeset
565 if (i == 1) {
11367
fec27e2a7570 Round correctly chroma picture height.
vitor
parents: 11366
diff changeset
566 w = (- ((-width) >> desc->log2_chroma_w) * pf->depth + 7) / 8;
fec27e2a7570 Round correctly chroma picture height.
vitor
parents: 11366
diff changeset
567 h = -((-height) >> desc->log2_chroma_h);
10569
7a8b35405591 Fix nv12/nv21 handling. linesize for plane 1 should account for both chroma
ramiro
parents: 10546
diff changeset
568 if (pix_fmt == PIX_FMT_NV12 || pix_fmt == PIX_FMT_NV21)
7a8b35405591 Fix nv12/nv21 handling. linesize for plane 1 should account for both chroma
ramiro
parents: 10546
diff changeset
569 w <<= 1;
10546
ramiro
parents: 10540
diff changeset
570 } else if (i == 3) {
ramiro
parents: 10540
diff changeset
571 w = ow;
ramiro
parents: 10540
diff changeset
572 h = oh;
ramiro
parents: 10540
diff changeset
573 }
ramiro
parents: 10540
diff changeset
574 s = src->data[i];
ramiro
parents: 10540
diff changeset
575 for(j=0; j<h; j++) {
ramiro
parents: 10540
diff changeset
576 memcpy(dest, s, w);
ramiro
parents: 10540
diff changeset
577 dest += w;
ramiro
parents: 10540
diff changeset
578 s += src->linesize[i];
ramiro
parents: 10540
diff changeset
579 }
1231
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
580 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
581
1243
5d2376294fbf * fixing a bug in avpicture_layout (PAL8 wasn't handled properly)
romansh
parents: 1231
diff changeset
582 if (pf->pixel_type == FF_PIXEL_PALETTE)
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
583 memcpy((unsigned char *)(((size_t)dest + 3) & ~3), src->data[1], 256 * 4);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
584
1231
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
585 return size;
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
586 }
b88dfc4bbf8c * introducing new public interface in imgconvert.c
romansh
parents: 1209
diff changeset
587
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
588 int avpicture_get_size(enum PixelFormat pix_fmt, int width, int height)
993
895d3b01c6f4 added missing formats in all functions - added monoblack, monowhite and gray8 support for most conversions
bellard
parents: 989
diff changeset
589 {
895d3b01c6f4 added missing formats in all functions - added monoblack, monowhite and gray8 support for most conversions
bellard
parents: 989
diff changeset
590 AVPicture dummy_pict;
9217
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
591 if(avcodec_check_dimensions(NULL, width, height))
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
592 return -1;
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
593 switch (pix_fmt) {
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
594 case PIX_FMT_RGB8:
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
595 case PIX_FMT_BGR8:
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
596 case PIX_FMT_RGB4_BYTE:
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
597 case PIX_FMT_BGR4_BYTE:
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
598 case PIX_FMT_GRAY8:
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
599 // do not include palette for these pseudo-paletted formats
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
600 return width * height;
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
601 }
993
895d3b01c6f4 added missing formats in all functions - added monoblack, monowhite and gray8 support for most conversions
bellard
parents: 989
diff changeset
602 return avpicture_fill(&dummy_pict, NULL, pix_fmt, width, height);
895d3b01c6f4 added missing formats in all functions - added monoblack, monowhite and gray8 support for most conversions
bellard
parents: 989
diff changeset
603 }
895d3b01c6f4 added missing formats in all functions - added monoblack, monowhite and gray8 support for most conversions
bellard
parents: 989
diff changeset
604
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
605 int avcodec_get_pix_fmt_loss(enum PixelFormat dst_pix_fmt, enum PixelFormat src_pix_fmt,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
606 int has_alpha)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
607 {
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
608 const PixFmtInfo *pf, *ps;
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
609 const AVPixFmtDescriptor *src_desc = &av_pix_fmt_descriptors[src_pix_fmt];
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
610 const AVPixFmtDescriptor *dst_desc = &av_pix_fmt_descriptors[dst_pix_fmt];
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
611 int loss;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
612
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
613 ps = &pix_fmt_info[src_pix_fmt];
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
614
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
615 /* compute loss */
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
616 loss = 0;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
617 pf = &pix_fmt_info[dst_pix_fmt];
1206
fd676abc754c loss fixes (thanks to Daniel Serpell) - shrink22 fix
bellard
parents: 1205
diff changeset
618 if (pf->depth < ps->depth ||
11365
eb03ee2f7781 Fix BGR cases missing from depth test in avcodec_get_pix_fmt_loss().
stefano
parents: 11318
diff changeset
619 ((dst_pix_fmt == PIX_FMT_RGB555BE || dst_pix_fmt == PIX_FMT_RGB555LE ||
eb03ee2f7781 Fix BGR cases missing from depth test in avcodec_get_pix_fmt_loss().
stefano
parents: 11318
diff changeset
620 dst_pix_fmt == PIX_FMT_BGR555BE || dst_pix_fmt == PIX_FMT_BGR555LE) &&
eb03ee2f7781 Fix BGR cases missing from depth test in avcodec_get_pix_fmt_loss().
stefano
parents: 11318
diff changeset
621 (src_pix_fmt == PIX_FMT_RGB565BE || src_pix_fmt == PIX_FMT_RGB565LE ||
eb03ee2f7781 Fix BGR cases missing from depth test in avcodec_get_pix_fmt_loss().
stefano
parents: 11318
diff changeset
622 src_pix_fmt == PIX_FMT_BGR565BE || src_pix_fmt == PIX_FMT_BGR565LE)))
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
623 loss |= FF_LOSS_DEPTH;
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
624 if (dst_desc->log2_chroma_w > src_desc->log2_chroma_w ||
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
625 dst_desc->log2_chroma_h > src_desc->log2_chroma_h)
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
626 loss |= FF_LOSS_RESOLUTION;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
627 switch(pf->color_type) {
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
628 case FF_COLOR_RGB:
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
629 if (ps->color_type != FF_COLOR_RGB &&
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
630 ps->color_type != FF_COLOR_GRAY)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
631 loss |= FF_LOSS_COLORSPACE;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
632 break;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
633 case FF_COLOR_GRAY:
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
634 if (ps->color_type != FF_COLOR_GRAY)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
635 loss |= FF_LOSS_COLORSPACE;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
636 break;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
637 case FF_COLOR_YUV:
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
638 if (ps->color_type != FF_COLOR_YUV)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
639 loss |= FF_LOSS_COLORSPACE;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
640 break;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
641 case FF_COLOR_YUV_JPEG:
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
642 if (ps->color_type != FF_COLOR_YUV_JPEG &&
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
643 ps->color_type != FF_COLOR_YUV &&
1206
fd676abc754c loss fixes (thanks to Daniel Serpell) - shrink22 fix
bellard
parents: 1205
diff changeset
644 ps->color_type != FF_COLOR_GRAY)
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
645 loss |= FF_LOSS_COLORSPACE;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
646 break;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
647 default:
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
648 /* fail safe test */
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
649 if (ps->color_type != pf->color_type)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
650 loss |= FF_LOSS_COLORSPACE;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
651 break;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
652 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
653 if (pf->color_type == FF_COLOR_GRAY &&
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
654 ps->color_type != FF_COLOR_GRAY)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
655 loss |= FF_LOSS_CHROMA;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
656 if (!pf->is_alpha && (ps->is_alpha && has_alpha))
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
657 loss |= FF_LOSS_ALPHA;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
658 if (pf->pixel_type == FF_PIXEL_PALETTE &&
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
659 (ps->pixel_type != FF_PIXEL_PALETTE && ps->color_type != FF_COLOR_GRAY))
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
660 loss |= FF_LOSS_COLORQUANT;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
661 return loss;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
662 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
663
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
664 static int avg_bits_per_pixel(enum PixelFormat pix_fmt)
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
665 {
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
666 int bits;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
667 const PixFmtInfo *pf;
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
668 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
669
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
670 pf = &pix_fmt_info[pix_fmt];
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
671 switch(pf->pixel_type) {
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
672 case FF_PIXEL_PACKED:
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
673 switch(pix_fmt) {
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4359
diff changeset
674 case PIX_FMT_YUYV422:
2137
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
675 case PIX_FMT_UYVY422:
10043
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
676 case PIX_FMT_RGB565BE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
677 case PIX_FMT_RGB565LE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
678 case PIX_FMT_RGB555BE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
679 case PIX_FMT_RGB555LE:
11366
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
680 case PIX_FMT_RGB444BE:
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
681 case PIX_FMT_RGB444LE:
10043
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
682 case PIX_FMT_BGR565BE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
683 case PIX_FMT_BGR565LE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
684 case PIX_FMT_BGR555BE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
685 case PIX_FMT_BGR555LE:
11366
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
686 case PIX_FMT_BGR444BE:
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
687 case PIX_FMT_BGR444LE:
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
688 bits = 16;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
689 break;
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4359
diff changeset
690 case PIX_FMT_UYYVYY411:
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
691 bits = 12;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
692 break;
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
693 default:
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
694 bits = pf->depth * pf->nb_channels;
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
695 break;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
696 }
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
697 break;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
698 case FF_PIXEL_PLANAR:
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
699 if (desc->log2_chroma_w == 0 && desc->log2_chroma_h == 0) {
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
700 bits = pf->depth * pf->nb_channels;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
701 } else {
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
702 bits = pf->depth + ((2 * pf->depth) >>
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
703 (desc->log2_chroma_w + desc->log2_chroma_h));
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
704 }
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
705 break;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
706 case FF_PIXEL_PALETTE:
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
707 bits = 8;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
708 break;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
709 default:
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
710 bits = -1;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
711 break;
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
712 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
713 return bits;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
714 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
715
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
716 static enum PixelFormat avcodec_find_best_pix_fmt1(int64_t pix_fmt_mask,
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
717 enum PixelFormat src_pix_fmt,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
718 int has_alpha,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
719 int loss_mask)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
720 {
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
721 int dist, i, loss, min_dist;
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
722 enum PixelFormat dst_pix_fmt;
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
723
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
724 /* find exact color match with smallest size */
10682
aa8bebc96764 Use PIX_FMT_NONE for -1 when enum PixelFormat is expected (fixes two icc warnings).
cehoyos
parents: 10640
diff changeset
725 dst_pix_fmt = PIX_FMT_NONE;
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
726 min_dist = 0x7fffffff;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
727 for(i = 0;i < PIX_FMT_NB; i++) {
8321
e9db9859de6c Prevent shift overflow, patch by Anders Gr«Ónberg, galileo.m2 gmail com.
diego
parents: 8316
diff changeset
728 if (pix_fmt_mask & (1ULL << i)) {
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
729 loss = avcodec_get_pix_fmt_loss(i, src_pix_fmt, has_alpha) & loss_mask;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
730 if (loss == 0) {
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
731 dist = avg_bits_per_pixel(i);
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
732 if (dist < min_dist) {
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
733 min_dist = dist;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
734 dst_pix_fmt = i;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
735 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
736 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
737 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
738 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
739 return dst_pix_fmt;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
740 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
741
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
742 enum PixelFormat avcodec_find_best_pix_fmt(int64_t pix_fmt_mask, enum PixelFormat src_pix_fmt,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
743 int has_alpha, int *loss_ptr)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
744 {
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
745 enum PixelFormat dst_pix_fmt;
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
746 int loss_mask, i;
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
747 static const int loss_mask_order[] = {
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
748 ~0, /* no loss first */
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
749 ~FF_LOSS_ALPHA,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
750 ~FF_LOSS_RESOLUTION,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
751 ~(FF_LOSS_COLORSPACE | FF_LOSS_RESOLUTION),
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
752 ~FF_LOSS_COLORQUANT,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
753 ~FF_LOSS_DEPTH,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
754 0,
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
755 };
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
756
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
757 /* try with successive loss */
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
758 i = 0;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
759 for(;;) {
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
760 loss_mask = loss_mask_order[i++];
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
761 dst_pix_fmt = avcodec_find_best_pix_fmt1(pix_fmt_mask, src_pix_fmt,
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
762 has_alpha, loss_mask);
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
763 if (dst_pix_fmt >= 0)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
764 goto found;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
765 if (loss_mask == 0)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
766 break;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
767 }
10682
aa8bebc96764 Use PIX_FMT_NONE for -1 when enum PixelFormat is expected (fixes two icc warnings).
cehoyos
parents: 10640
diff changeset
768 return PIX_FMT_NONE;
1202
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
769 found:
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
770 if (loss_ptr)
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
771 *loss_ptr = avcodec_get_pix_fmt_loss(dst_pix_fmt, src_pix_fmt, has_alpha);
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
772 return dst_pix_fmt;
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
773 }
8b49a7ee4e4e YUV formats/gray formats are correctly defined - added format loss information - preliminary JPEG YUV formats support
bellard
parents: 1199
diff changeset
774
3245
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
775 void ff_img_copy_plane(uint8_t *dst, int dst_wrap,
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
776 const uint8_t *src, int src_wrap,
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
777 int width, int height)
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
778 {
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
779 if((!dst) || (!src))
2785
c8d53188048d segfault fix
michael
parents: 2422
diff changeset
780 return;
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
781 for(;height > 0; height--) {
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
782 memcpy(dst, src, width);
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
783 dst += dst_wrap;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
784 src += src_wrap;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
785 }
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
786 }
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
787
6358
6aa3024c07c5 This should not be part of the public API
vitor
parents: 6357
diff changeset
788 int ff_get_plane_bytewidth(enum PixelFormat pix_fmt, int width, int plane)
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
789 {
6347
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
790 int bits;
3420
54814e15aa3d Mark some read-only datastructures as const.
diego
parents: 3266
diff changeset
791 const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
792 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
793
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
794 pf = &pix_fmt_info[pix_fmt];
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
795 switch(pf->pixel_type) {
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
796 case FF_PIXEL_PACKED:
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
797 switch(pix_fmt) {
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4359
diff changeset
798 case PIX_FMT_YUYV422:
2137
ef47c0b1ff28 UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents: 1593
diff changeset
799 case PIX_FMT_UYVY422:
10043
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
800 case PIX_FMT_RGB565BE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
801 case PIX_FMT_RGB565LE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
802 case PIX_FMT_RGB555BE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
803 case PIX_FMT_RGB555LE:
11366
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
804 case PIX_FMT_RGB444BE:
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
805 case PIX_FMT_RGB444LE:
10043
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
806 case PIX_FMT_BGR565BE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
807 case PIX_FMT_BGR565LE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
808 case PIX_FMT_BGR555BE:
5d5562aa94df Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their native
cehoyos
parents: 9985
diff changeset
809 case PIX_FMT_BGR555LE:
11366
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
810 case PIX_FMT_BGR444BE:
3f231ba93f80 Add initial support for 12-bit color mode.
benoit
parents: 11365
diff changeset
811 case PIX_FMT_BGR444LE:
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
812 bits = 16;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
813 break;
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4359
diff changeset
814 case PIX_FMT_UYYVYY411:
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
815 bits = 12;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
816 break;
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
817 default:
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
818 bits = pf->depth * pf->nb_channels;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
819 break;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
820 }
6347
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
821 return (width * bits + 7) >> 3;
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
822 break;
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
823 case FF_PIXEL_PLANAR:
11842
3c812305443b Fix width computation for nv12/nv21 in ff_get_plane_bytewidth().
stefano
parents: 11644
diff changeset
824 if ((pix_fmt != PIX_FMT_NV12 && pix_fmt != PIX_FMT_NV21) &&
3c812305443b Fix width computation for nv12/nv21 in ff_get_plane_bytewidth().
stefano
parents: 11644
diff changeset
825 (plane == 1 || plane == 2))
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
826 width= -((-width)>>desc->log2_chroma_w);
6347
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
827
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
828 return (width * pf->depth + 7) >> 3;
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
829 break;
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
830 case FF_PIXEL_PALETTE:
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
831 if (plane == 0)
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
832 return width;
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
833 break;
6347
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
834 }
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
835
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
836 return -1;
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
837 }
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
838
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
839 void av_picture_copy(AVPicture *dst, const AVPicture *src,
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
840 enum PixelFormat pix_fmt, int width, int height)
6347
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
841 {
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
842 int i;
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
843 const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
844 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
6347
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
845
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
846 switch(pf->pixel_type) {
e65c0ac23ea5 Factor bytewidth determination in its own function
vitor
parents: 6198
diff changeset
847 case FF_PIXEL_PACKED:
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
848 case FF_PIXEL_PLANAR:
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
849 for(i = 0; i < pf->nb_channels; i++) {
8087
661cd381d996 Remove unused variable, patch by Art Clarke, aclarke vlideshow com.
diego
parents: 8083
diff changeset
850 int h;
6358
6aa3024c07c5 This should not be part of the public API
vitor
parents: 6357
diff changeset
851 int bwidth = ff_get_plane_bytewidth(pix_fmt, width, i);
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
852 h = height;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
853 if (i == 1 || i == 2) {
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
854 h= -((-height)>>desc->log2_chroma_h);
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
855 }
3245
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
856 ff_img_copy_plane(dst->data[i], dst->linesize[i],
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
857 src->data[i], src->linesize[i],
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
858 bwidth, h);
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
859 }
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
860 break;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
861 case FF_PIXEL_PALETTE:
3245
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
862 ff_img_copy_plane(dst->data[0], dst->linesize[0],
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
863 src->data[0], src->linesize[0],
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
864 width, height);
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
865 /* copy the palette */
10510
26fcf45bb486 Fix palette copying in av_picture_copy(). Previous code worked only if
vitor
parents: 10509
diff changeset
866 memcpy(dst->data[1], src->data[1], 4*256);
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
867 break;
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
868 }
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
869 }
993
895d3b01c6f4 added missing formats in all functions - added monoblack, monowhite and gray8 support for most conversions
bellard
parents: 989
diff changeset
870
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
871 /* 2x2 -> 1x1 */
3245
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
872 void ff_shrink22(uint8_t *dst, int dst_wrap,
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
873 const uint8_t *src, int src_wrap,
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
874 int width, int height)
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
875 {
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
876 int w;
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
877 const uint8_t *s1, *s2;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
878 uint8_t *d;
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
879
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
880 for(;height > 0; height--) {
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
881 s1 = src;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
882 s2 = s1 + src_wrap;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
883 d = dst;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
884 for(w = width;w >= 4; w-=4) {
1206
fd676abc754c loss fixes (thanks to Daniel Serpell) - shrink22 fix
bellard
parents: 1205
diff changeset
885 d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
fd676abc754c loss fixes (thanks to Daniel Serpell) - shrink22 fix
bellard
parents: 1205
diff changeset
886 d[1] = (s1[2] + s1[3] + s2[2] + s2[3] + 2) >> 2;
fd676abc754c loss fixes (thanks to Daniel Serpell) - shrink22 fix
bellard
parents: 1205
diff changeset
887 d[2] = (s1[4] + s1[5] + s2[4] + s2[5] + 2) >> 2;
fd676abc754c loss fixes (thanks to Daniel Serpell) - shrink22 fix
bellard
parents: 1205
diff changeset
888 d[3] = (s1[6] + s1[7] + s2[6] + s2[7] + 2) >> 2;
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
889 s1 += 8;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
890 s2 += 8;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
891 d += 4;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
892 }
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
893 for(;w > 0; w--) {
1206
fd676abc754c loss fixes (thanks to Daniel Serpell) - shrink22 fix
bellard
parents: 1205
diff changeset
894 d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
895 s1 += 2;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
896 s2 += 2;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
897 d++;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
898 }
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
899 src += 2 * src_wrap;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
900 dst += dst_wrap;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
901 }
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
902 }
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
903
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
904 /* 4x4 -> 1x1 */
3245
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
905 void ff_shrink44(uint8_t *dst, int dst_wrap,
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
906 const uint8_t *src, int src_wrap,
576
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
907 int width, int height)
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
908 {
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
909 int w;
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
910 const uint8_t *s1, *s2, *s3, *s4;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
911 uint8_t *d;
576
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
912
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
913 for(;height > 0; height--) {
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
914 s1 = src;
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
915 s2 = s1 + src_wrap;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
916 s3 = s2 + src_wrap;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
917 s4 = s3 + src_wrap;
576
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
918 d = dst;
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
919 for(w = width;w > 0; w--) {
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
920 d[0] = (s1[0] + s1[1] + s1[2] + s1[3] +
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
921 s2[0] + s2[1] + s2[2] + s2[3] +
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
922 s3[0] + s3[1] + s3[2] + s3[3] +
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
923 s4[0] + s4[1] + s4[2] + s4[3] + 8) >> 4;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
924 s1 += 4;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
925 s2 += 4;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
926 s3 += 4;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
927 s4 += 4;
576
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
928 d++;
9aa5f0d0124e YUV410P to YUV420P patch by Fran«®ois Revol <revol at free dot fr>
michaelni
parents: 440
diff changeset
929 }
1205
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
930 src += 4 * src_wrap;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
931 dst += dst_wrap;
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
932 }
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
933 }
c2672cdf2d2a added all missing UV conversions
bellard
parents: 1204
diff changeset
934
3245
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
935 /* 8x8 -> 1x1 */
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
936 void ff_shrink88(uint8_t *dst, int dst_wrap,
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
937 const uint8_t *src, int src_wrap,
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
938 int width, int height)
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
939 {
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
940 int w, i;
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
941
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
942 for(;height > 0; height--) {
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
943 for(w = width;w > 0; w--) {
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
944 int tmp=0;
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
945 for(i=0; i<8; i++){
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
946 tmp += src[0] + src[1] + src[2] + src[3] + src[4] + src[5] + src[6] + src[7];
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
947 src += src_wrap;
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
948 }
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
949 *(dst++) = (tmp + 32)>>6;
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
950 src += 8 - 8*src_wrap;
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
951 }
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
952 src += 8*src_wrap - 8*width;
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
953 dst += dst_wrap - width;
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
954 }
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
955 }
c2c29be6282e remove mpegvideo.c img resample dependancy
michael
parents: 3179
diff changeset
956
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
957
1508
5a43bc31c2eb recommit of
michael
parents: 1488
diff changeset
958 int avpicture_alloc(AVPicture *picture,
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
959 enum PixelFormat pix_fmt, int width, int height)
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
960 {
3266
3b785e80ce3e make "size" variable in avpicture_alloc signed, since avpicture_get_size
reimar
parents: 3257
diff changeset
961 int size;
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
962 void *ptr;
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
963
9217
53ec03e7ba40 Fix avpicture_get_size for non-paletted formats with a helper palette
reimar
parents: 9191
diff changeset
964 size = avpicture_fill(picture, NULL, pix_fmt, width, height);
2422
18b8b2dcc037 various security fixes and precautionary checks
michael
parents: 2366
diff changeset
965 if(size<0)
18b8b2dcc037 various security fixes and precautionary checks
michael
parents: 2366
diff changeset
966 goto fail;
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
967 ptr = av_malloc(size);
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
968 if (!ptr)
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
969 goto fail;
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
970 avpicture_fill(picture, ptr, pix_fmt, width, height);
8748
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
971 if(picture->data[1] && !picture->data[2])
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
972 ff_set_systematic_pal((uint32_t*)picture->data[1], pix_fmt);
eaa08ce79f9a Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents: 8718
diff changeset
973
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
974 return 0;
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
975 fail:
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
976 memset(picture, 0, sizeof(AVPicture));
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
977 return -1;
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
978 }
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
979
1508
5a43bc31c2eb recommit of
michael
parents: 1488
diff changeset
980 void avpicture_free(AVPicture *picture)
989
fe9083c56733 simplified code (need automatic testing) - added primitive new format support.
bellard
parents: 940
diff changeset
981 {
1031
19de1445beb2 use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents: 1028
diff changeset
982 av_free(picture->data[0]);
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
983 }
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
984
1203
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
985 /* return true if yuv planar */
3420
54814e15aa3d Mark some read-only datastructures as const.
diego
parents: 3266
diff changeset
986 static inline int is_yuv_planar(const PixFmtInfo *ps)
1203
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
987 {
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
988 return (ps->color_type == FF_COLOR_YUV ||
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
989 ps->color_type == FF_COLOR_YUV_JPEG) &&
1204
e55580ae9969 almost exhaustive image conversion support
bellard
parents: 1203
diff changeset
990 ps->pixel_type == FF_PIXEL_PLANAR;
1203
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
991 }
80c73b9b0ba2 accurate YUV to RGB and RGB to YUV conversions - added comments
bellard
parents: 1202
diff changeset
992
4624
6a900f539e2c Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"
takis
parents: 4593
diff changeset
993 int av_picture_crop(AVPicture *dst, const AVPicture *src,
9902
9bdf9fe9018c Fix argument type mismatches for av_picture_crop and av_picture_fill
mru
parents: 9519
diff changeset
994 enum PixelFormat pix_fmt, int top_band, int left_band)
3179
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
995 {
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
996 int y_shift;
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
997 int x_shift;
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
998
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
999 if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB || !is_yuv_planar(&pix_fmt_info[pix_fmt]))
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1000 return -1;
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1001
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
1002 y_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h;
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
1003 x_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_w;
3179
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1004
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1005 dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1006 dst->data[1] = src->data[1] + ((top_band >> y_shift) * src->linesize[1]) + (left_band >> x_shift);
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1007 dst->data[2] = src->data[2] + ((top_band >> y_shift) * src->linesize[2]) + (left_band >> x_shift);
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1008
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1009 dst->linesize[0] = src->linesize[0];
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1010 dst->linesize[1] = src->linesize[1];
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1011 dst->linesize[2] = src->linesize[2];
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1012 return 0;
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1013 }
870bbd067df8 Fix cropping, depending on enc pix fmt
bcoudurier
parents: 3036
diff changeset
1014
4624
6a900f539e2c Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"
takis
parents: 4593
diff changeset
1015 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width,
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
1016 enum PixelFormat pix_fmt, int padtop, int padbottom, int padleft, int padright,
4358
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1017 int *color)
3257
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1018 {
4359
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1019 uint8_t *optr;
3257
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1020 int y_shift;
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1021 int x_shift;
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1022 int yheight;
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1023 int i, y;
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1024
4358
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1025 if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB ||
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1026 !is_yuv_planar(&pix_fmt_info[pix_fmt])) return -1;
3257
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1027
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1028 for (i = 0; i < 3; i++) {
10577
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
1029 x_shift = i ? av_pix_fmt_descriptors[pix_fmt].log2_chroma_w : 0;
db54dba1f21c Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, use
stefano
parents: 10573
diff changeset
1030 y_shift = i ? av_pix_fmt_descriptors[pix_fmt].log2_chroma_h : 0;
3257
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1031
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1032 if (padtop || padleft) {
4358
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1033 memset(dst->data[i], color[i],
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1034 dst->linesize[i] * (padtop >> y_shift) + (padleft >> x_shift));
3257
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1035 }
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1036
4359
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1037 if (padleft || padright) {
4358
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1038 optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1039 (dst->linesize[i] - (padright >> x_shift));
3257
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1040 yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1041 for (y = 0; y < yheight; y++) {
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1042 memset(optr, color[i], (padleft + padright) >> x_shift);
4359
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1043 optr += dst->linesize[i];
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1044 }
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1045 }
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1046
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1047 if (src) { /* first line */
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1048 uint8_t *iptr = src->data[i];
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1049 optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1050 (padleft >> x_shift);
6963
cc2c5a21a0eb memcpy considering output width, not src linesize, fix segv with av_picture_pad
bcoudurier
parents: 6911
diff changeset
1051 memcpy(optr, iptr, (width - padleft - padright) >> x_shift);
4359
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1052 iptr += src->linesize[i];
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1053 optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1054 (dst->linesize[i] - (padright >> x_shift));
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1055 yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1056 for (y = 0; y < yheight; y++) {
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1057 memset(optr, color[i], (padleft + padright) >> x_shift);
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1058 memcpy(optr + ((padleft + padright) >> x_shift), iptr,
6963
cc2c5a21a0eb memcpy considering output width, not src linesize, fix segv with av_picture_pad
bcoudurier
parents: 6911
diff changeset
1059 (width - padleft - padright) >> x_shift);
4359
d276d6eed6a0 Avoid branches in the loop and solve a gcc warning
lu_zero
parents: 4358
diff changeset
1060 iptr += src->linesize[i];
3257
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1061 optr += dst->linesize[i];
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1062 }
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1063 }
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1064
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1065 if (padbottom || padright) {
4358
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1066 optr = dst->data[i] + dst->linesize[i] *
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1067 ((height - padbottom) >> y_shift) - (padright >> x_shift);
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1068 memset(optr, color[i],dst->linesize[i] *
0924cc1db086 Cosmetics
lu_zero
parents: 4208
diff changeset
1069 (padbottom >> y_shift) + (padright >> x_shift));
3257
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1070 }
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1071 }
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1072 return 0;
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1073 }
63f61b09dcee Baptiste COUDURIER's padding patch (reworked by me a little bit).
lucabe
parents: 3245
diff changeset
1074
1208
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1075 /* NOTE: we scan all the pixels to have an exact information */
1488
766a2f4edbea avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents: 1425
diff changeset
1076 static int get_alpha_info_pal8(const AVPicture *src, int width, int height)
1208
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1077 {
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1078 const unsigned char *p;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1079 int src_wrap, ret, x, y;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1080 unsigned int a;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1081 uint32_t *palette = (uint32_t *)src->data[1];
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
1082
1208
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1083 p = src->data[0];
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1084 src_wrap = src->linesize[0] - width;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1085 ret = 0;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1086 for(y=0;y<height;y++) {
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1087 for(x=0;x<width;x++) {
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1088 a = palette[p[0]] >> 24;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1089 if (a == 0x00) {
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1090 ret |= FF_ALPHA_TRANSP;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1091 } else if (a != 0xff) {
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1092 ret |= FF_ALPHA_SEMI_TRANSP;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1093 }
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1094 p++;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1095 }
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1096 p += src_wrap;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1097 }
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1098 return ret;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1099 }
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1100
1488
766a2f4edbea avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents: 1425
diff changeset
1101 int img_get_alpha_info(const AVPicture *src,
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
1102 enum PixelFormat pix_fmt, int width, int height)
1208
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1103 {
3420
54814e15aa3d Mark some read-only datastructures as const.
diego
parents: 3266
diff changeset
1104 const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
1208
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1105 int ret;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1106
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1107 /* no alpha can be represented in format */
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1108 if (!pf->is_alpha)
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1109 return 0;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1110 switch(pix_fmt) {
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1111 case PIX_FMT_PAL8:
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1112 ret = get_alpha_info_pal8(src, width, height);
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1113 break;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1114 default:
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1115 /* we do not know, so everything is indicated */
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1116 ret = FF_ALPHA_TRANSP | FF_ALPHA_SEMI_TRANSP;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1117 break;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1118 }
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1119 return ret;
0f37976aa436 added img_get_alpha_info()
bellard
parents: 1207
diff changeset
1120 }
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1121
8590
7a463923ecd1 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 8522
diff changeset
1122 #if HAVE_MMX
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1123 #define DEINT_INPLACE_LINE_LUM \
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1124 movd_m2r(lum_m4[0],mm0);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1125 movd_m2r(lum_m3[0],mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1126 movd_m2r(lum_m2[0],mm2);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1127 movd_m2r(lum_m1[0],mm3);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1128 movd_m2r(lum[0],mm4);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1129 punpcklbw_r2r(mm7,mm0);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1130 movd_r2m(mm2,lum_m4[0]);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1131 punpcklbw_r2r(mm7,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1132 punpcklbw_r2r(mm7,mm2);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1133 punpcklbw_r2r(mm7,mm3);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1134 punpcklbw_r2r(mm7,mm4);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1135 paddw_r2r(mm3,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1136 psllw_i2r(1,mm2);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1137 paddw_r2r(mm4,mm0);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1138 psllw_i2r(2,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1139 paddw_r2r(mm6,mm2);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1140 paddw_r2r(mm2,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1141 psubusw_r2r(mm0,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1142 psrlw_i2r(3,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1143 packuswb_r2r(mm7,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1144 movd_r2m(mm1,lum_m2[0]);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1145
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1146 #define DEINT_LINE_LUM \
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1147 movd_m2r(lum_m4[0],mm0);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1148 movd_m2r(lum_m3[0],mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1149 movd_m2r(lum_m2[0],mm2);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1150 movd_m2r(lum_m1[0],mm3);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1151 movd_m2r(lum[0],mm4);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1152 punpcklbw_r2r(mm7,mm0);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1153 punpcklbw_r2r(mm7,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1154 punpcklbw_r2r(mm7,mm2);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1155 punpcklbw_r2r(mm7,mm3);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1156 punpcklbw_r2r(mm7,mm4);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1157 paddw_r2r(mm3,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1158 psllw_i2r(1,mm2);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1159 paddw_r2r(mm4,mm0);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1160 psllw_i2r(2,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1161 paddw_r2r(mm6,mm2);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1162 paddw_r2r(mm2,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1163 psubusw_r2r(mm0,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1164 psrlw_i2r(3,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1165 packuswb_r2r(mm7,mm1);\
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1166 movd_r2m(mm1,dst[0]);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1167 #endif
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1168
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1169 /* filter parameters: [-1 4 2 4 -1] // 8 */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2785
diff changeset
1170 static void deinterlace_line(uint8_t *dst,
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
1171 const uint8_t *lum_m4, const uint8_t *lum_m3,
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
1172 const uint8_t *lum_m2, const uint8_t *lum_m1,
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
1173 const uint8_t *lum,
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
1174 int size)
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1175 {
8590
7a463923ecd1 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 8522
diff changeset
1176 #if !HAVE_MMX
4176
23da44e8fd05 rename cropTbl -> ff_cropTbl
mru
parents: 4088
diff changeset
1177 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1178 int sum;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1179
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1180 for(;size > 0;size--) {
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1181 sum = -lum_m4[0];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1182 sum += lum_m3[0] << 2;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1183 sum += lum_m2[0] << 1;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1184 sum += lum_m1[0] << 2;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1185 sum += -lum[0];
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1186 dst[0] = cm[(sum + 4) >> 3];
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1187 lum_m4++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1188 lum_m3++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1189 lum_m2++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1190 lum_m1++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1191 lum++;
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1192 dst++;
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1193 }
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1194 #else
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1195
1044
c6b3af81d79e 100000l
michaelni
parents: 1031
diff changeset
1196 {
c6b3af81d79e 100000l
michaelni
parents: 1031
diff changeset
1197 pxor_r2r(mm7,mm7);
8316
589f9a71df95 Get rid of mmx_t.
aurel
parents: 8087
diff changeset
1198 movq_m2r(ff_pw_4,mm6);
1044
c6b3af81d79e 100000l
michaelni
parents: 1031
diff changeset
1199 }
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1200 for (;size > 3; size-=4) {
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1201 DEINT_LINE_LUM
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1202 lum_m4+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1203 lum_m3+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1204 lum_m2+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1205 lum_m1+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1206 lum+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1207 dst+=4;
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1208 }
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1209 #endif
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1210 }
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
1211 static void deinterlace_line_inplace(uint8_t *lum_m4, uint8_t *lum_m3, uint8_t *lum_m2, uint8_t *lum_m1, uint8_t *lum,
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1212 int size)
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1213 {
8590
7a463923ecd1 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 8522
diff changeset
1214 #if !HAVE_MMX
4176
23da44e8fd05 rename cropTbl -> ff_cropTbl
mru
parents: 4088
diff changeset
1215 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1216 int sum;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1217
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1218 for(;size > 0;size--) {
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1219 sum = -lum_m4[0];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1220 sum += lum_m3[0] << 2;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1221 sum += lum_m2[0] << 1;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1222 lum_m4[0]=lum_m2[0];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1223 sum += lum_m1[0] << 2;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1224 sum += -lum[0];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1225 lum_m2[0] = cm[(sum + 4) >> 3];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1226 lum_m4++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1227 lum_m3++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1228 lum_m2++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1229 lum_m1++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1230 lum++;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1231 }
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1232 #else
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1233
1044
c6b3af81d79e 100000l
michaelni
parents: 1031
diff changeset
1234 {
c6b3af81d79e 100000l
michaelni
parents: 1031
diff changeset
1235 pxor_r2r(mm7,mm7);
8316
589f9a71df95 Get rid of mmx_t.
aurel
parents: 8087
diff changeset
1236 movq_m2r(ff_pw_4,mm6);
1044
c6b3af81d79e 100000l
michaelni
parents: 1031
diff changeset
1237 }
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1238 for (;size > 3; size-=4) {
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1239 DEINT_INPLACE_LINE_LUM
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1240 lum_m4+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1241 lum_m3+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1242 lum_m2+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1243 lum_m1+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1244 lum+=4;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1245 }
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1246 #endif
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1247 }
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1248
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1249 /* deinterlacing : 2 temporal taps, 3 spatial taps linear filter. The
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1250 top field is copied as is, but the bottom field is deinterlaced
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1251 against the top field. */
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
1252 static void deinterlace_bottom_field(uint8_t *dst, int dst_wrap,
1488
766a2f4edbea avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents: 1425
diff changeset
1253 const uint8_t *src1, int src_wrap,
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1254 int width, int height)
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1255 {
1488
766a2f4edbea avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents: 1425
diff changeset
1256 const uint8_t *src_m2, *src_m1, *src_0, *src_p1, *src_p2;
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1257 int y;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1258
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1259 src_m2 = src1;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1260 src_m1 = src1;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1261 src_0=&src_m1[src_wrap];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1262 src_p1=&src_0[src_wrap];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1263 src_p2=&src_p1[src_wrap];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1264 for(y=0;y<(height-2);y+=2) {
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1265 memcpy(dst,src_m1,width);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1266 dst += dst_wrap;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1267 deinterlace_line(dst,src_m2,src_m1,src_0,src_p1,src_p2,width);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1268 src_m2 = src_0;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1269 src_m1 = src_p1;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1270 src_0 = src_p2;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1271 src_p1 += 2*src_wrap;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1272 src_p2 += 2*src_wrap;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1273 dst += dst_wrap;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1274 }
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1275 memcpy(dst,src_m1,width);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1276 dst += dst_wrap;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1277 /* do last line */
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1278 deinterlace_line(dst,src_m2,src_m1,src_0,src_0,src_0,width);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1279 }
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1280
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
1281 static void deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
1282 int width, int height)
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1283 {
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
1284 uint8_t *src_m1, *src_0, *src_p1, *src_p2;
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1285 int y;
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
1286 uint8_t *buf;
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
1287 buf = (uint8_t*)av_malloc(width);
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1288
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1289 src_m1 = src1;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1290 memcpy(buf,src_m1,width);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1291 src_0=&src_m1[src_wrap];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1292 src_p1=&src_0[src_wrap];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1293 src_p2=&src_p1[src_wrap];
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1294 for(y=0;y<(height-2);y+=2) {
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1295 deinterlace_line_inplace(buf,src_m1,src_0,src_p1,src_p2,width);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1296 src_m1 = src_p1;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1297 src_0 = src_p2;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1298 src_p1 += 2*src_wrap;
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1299 src_p2 += 2*src_wrap;
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1300 }
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1301 /* do last line */
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1302 deinterlace_line_inplace(buf,src_m1,src_0,src_0,src_0,width);
396
fce0a2520551 removed useless header includes - use av memory functions
glantau
parents: 315
diff changeset
1303 av_free(buf);
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1304 }
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1305
1488
766a2f4edbea avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents: 1425
diff changeset
1306 int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
9221
a15ec86bf752 Globally prefer enum PixelFormat over int when it makes sense.
stefano
parents: 9217
diff changeset
1307 enum PixelFormat pix_fmt, int width, int height)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
1308 {
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1309 int i;
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
1310
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1311 if (pix_fmt != PIX_FMT_YUV420P &&
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1312 pix_fmt != PIX_FMT_YUV422P &&
1425
f53d31c5eac9 * ffmpeg was *silently* rejecting to deinterlace NTSC DV. The problem
romansh
parents: 1353
diff changeset
1313 pix_fmt != PIX_FMT_YUV444P &&
5810
3e5e2bafe35c Enable avpicture_deinterlace() for PIX_FMT_GRAY8.
cehoyos
parents: 5735
diff changeset
1314 pix_fmt != PIX_FMT_YUV411P &&
3e5e2bafe35c Enable avpicture_deinterlace() for PIX_FMT_GRAY8.
cehoyos
parents: 5735
diff changeset
1315 pix_fmt != PIX_FMT_GRAY8)
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1316 return -1;
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1317 if ((width & 3) != 0 || (height & 3) != 0)
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1318 return -1;
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1319
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1320 for(i=0;i<3;i++) {
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1321 if (i == 1) {
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1322 switch(pix_fmt) {
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1323 case PIX_FMT_YUV420P:
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1324 width >>= 1;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1325 height >>= 1;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1326 break;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1327 case PIX_FMT_YUV422P:
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1328 width >>= 1;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1329 break;
1425
f53d31c5eac9 * ffmpeg was *silently* rejecting to deinterlace NTSC DV. The problem
romansh
parents: 1353
diff changeset
1330 case PIX_FMT_YUV411P:
f53d31c5eac9 * ffmpeg was *silently* rejecting to deinterlace NTSC DV. The problem
romansh
parents: 1353
diff changeset
1331 width >>= 2;
f53d31c5eac9 * ffmpeg was *silently* rejecting to deinterlace NTSC DV. The problem
romansh
parents: 1353
diff changeset
1332 break;
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1333 default:
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1334 break;
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1335 }
5810
3e5e2bafe35c Enable avpicture_deinterlace() for PIX_FMT_GRAY8.
cehoyos
parents: 5735
diff changeset
1336 if (pix_fmt == PIX_FMT_GRAY8) {
3e5e2bafe35c Enable avpicture_deinterlace() for PIX_FMT_GRAY8.
cehoyos
parents: 5735
diff changeset
1337 break;
3e5e2bafe35c Enable avpicture_deinterlace() for PIX_FMT_GRAY8.
cehoyos
parents: 5735
diff changeset
1338 }
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1339 }
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1340 if (src == dst) {
1488
766a2f4edbea avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents: 1425
diff changeset
1341 deinterlace_bottom_field_inplace(dst->data[i], dst->linesize[i],
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1342 width, height);
801
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1343 } else {
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1344 deinterlace_bottom_field(dst->data[i],dst->linesize[i],
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1345 src->data[i], src->linesize[i],
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1346 width, height);
f720b01c0fd5 1) Add MMX deinterlace code.
michaelni
parents: 736
diff changeset
1347 }
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
1348 }
5735
8b211f34a3eb Use emms_c() instead of ifdef
andoma
parents: 5706
diff changeset
1349 emms_c();
52
1d796bdb2c2a added 422P, 444P support - added deinterlace support - added xxx to RGB24 convertion
glantau
parents: 18
diff changeset
1350 return 0;
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
1351 }
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
1352