]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavcodec/imgconvert.c
In win32 thread implementation do not access jobnr if the thread is asked
[frescor/ffmpeg.git] / libavcodec / imgconvert.c
1 /*
2  * Misc image conversion routines
3  * Copyright (c) 2001, 2002, 2003 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file libavcodec/imgconvert.c
24  * misc image conversion routines
25  */
26
27 /* TODO:
28  * - write 'ffimg' program to test all the image related stuff
29  * - move all api to slice based system
30  * - integrate deinterlacing, postprocessing and scaling in the conversion process
31  */
32
33 #include "avcodec.h"
34 #include "dsputil.h"
35 #include "colorspace.h"
36
37 #if HAVE_MMX
38 #include "x86/mmx.h"
39 #include "x86/dsputil_mmx.h"
40 #endif
41
42 #define xglue(x, y) x ## y
43 #define glue(x, y) xglue(x, y)
44
45 #define FF_COLOR_RGB      0 /**< RGB color space */
46 #define FF_COLOR_GRAY     1 /**< gray color space */
47 #define FF_COLOR_YUV      2 /**< YUV color space. 16 <= Y <= 235, 16 <= U, V <= 240 */
48 #define FF_COLOR_YUV_JPEG 3 /**< YUV color space. 0 <= Y <= 255, 0 <= U, V <= 255 */
49
50 #define FF_PIXEL_PLANAR   0 /**< each channel has one component in AVPicture */
51 #define FF_PIXEL_PACKED   1 /**< only one components containing all the channels */
52 #define FF_PIXEL_PALETTE  2  /**< one components containing indexes for a palette */
53
54 typedef struct PixFmtInfo {
55     const char *name;
56     uint8_t nb_channels;     /**< number of channels (including alpha) */
57     uint8_t color_type;      /**< color type (see FF_COLOR_xxx constants) */
58     uint8_t pixel_type;      /**< pixel storage type (see FF_PIXEL_xxx constants) */
59     uint8_t is_alpha : 1;    /**< true if alpha can be specified */
60     uint8_t is_hwaccel : 1;  /**< true if this is an HW accelerated format */
61     uint8_t x_chroma_shift;  /**< X chroma subsampling factor is 2 ^ shift */
62     uint8_t y_chroma_shift;  /**< Y chroma subsampling factor is 2 ^ shift */
63     uint8_t depth;           /**< bit depth of the color components */
64 } PixFmtInfo;
65
66 /* this table gives more information about formats */
67 static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = {
68     /* YUV formats */
69     [PIX_FMT_YUV420P] = {
70         .name = "yuv420p",
71         .nb_channels = 3,
72         .color_type = FF_COLOR_YUV,
73         .pixel_type = FF_PIXEL_PLANAR,
74         .depth = 8,
75         .x_chroma_shift = 1, .y_chroma_shift = 1,
76     },
77     [PIX_FMT_YUV422P] = {
78         .name = "yuv422p",
79         .nb_channels = 3,
80         .color_type = FF_COLOR_YUV,
81         .pixel_type = FF_PIXEL_PLANAR,
82         .depth = 8,
83         .x_chroma_shift = 1, .y_chroma_shift = 0,
84     },
85     [PIX_FMT_YUV444P] = {
86         .name = "yuv444p",
87         .nb_channels = 3,
88         .color_type = FF_COLOR_YUV,
89         .pixel_type = FF_PIXEL_PLANAR,
90         .depth = 8,
91         .x_chroma_shift = 0, .y_chroma_shift = 0,
92     },
93     [PIX_FMT_YUYV422] = {
94         .name = "yuyv422",
95         .nb_channels = 1,
96         .color_type = FF_COLOR_YUV,
97         .pixel_type = FF_PIXEL_PACKED,
98         .depth = 8,
99         .x_chroma_shift = 1, .y_chroma_shift = 0,
100     },
101     [PIX_FMT_UYVY422] = {
102         .name = "uyvy422",
103         .nb_channels = 1,
104         .color_type = FF_COLOR_YUV,
105         .pixel_type = FF_PIXEL_PACKED,
106         .depth = 8,
107         .x_chroma_shift = 1, .y_chroma_shift = 0,
108     },
109     [PIX_FMT_YUV410P] = {
110         .name = "yuv410p",
111         .nb_channels = 3,
112         .color_type = FF_COLOR_YUV,
113         .pixel_type = FF_PIXEL_PLANAR,
114         .depth = 8,
115         .x_chroma_shift = 2, .y_chroma_shift = 2,
116     },
117     [PIX_FMT_YUV411P] = {
118         .name = "yuv411p",
119         .nb_channels = 3,
120         .color_type = FF_COLOR_YUV,
121         .pixel_type = FF_PIXEL_PLANAR,
122         .depth = 8,
123         .x_chroma_shift = 2, .y_chroma_shift = 0,
124     },
125     [PIX_FMT_YUV440P] = {
126         .name = "yuv440p",
127         .nb_channels = 3,
128         .color_type = FF_COLOR_YUV,
129         .pixel_type = FF_PIXEL_PLANAR,
130         .depth = 8,
131         .x_chroma_shift = 0, .y_chroma_shift = 1,
132     },
133     [PIX_FMT_YUV420P16LE] = {
134         .name = "yuv420p16le",
135         .nb_channels = 3,
136         .color_type = FF_COLOR_YUV,
137         .pixel_type = FF_PIXEL_PLANAR,
138         .depth = 16,
139         .x_chroma_shift = 1, .y_chroma_shift = 1,
140     },
141     [PIX_FMT_YUV422P16LE] = {
142         .name = "yuv422p16le",
143         .nb_channels = 3,
144         .color_type = FF_COLOR_YUV,
145         .pixel_type = FF_PIXEL_PLANAR,
146         .depth = 16,
147         .x_chroma_shift = 1, .y_chroma_shift = 0,
148     },
149     [PIX_FMT_YUV444P16LE] = {
150         .name = "yuv444p16le",
151         .nb_channels = 3,
152         .color_type = FF_COLOR_YUV,
153         .pixel_type = FF_PIXEL_PLANAR,
154         .depth = 16,
155         .x_chroma_shift = 0, .y_chroma_shift = 0,
156     },
157     [PIX_FMT_YUV420P16BE] = {
158         .name = "yuv420p16be",
159         .nb_channels = 3,
160         .color_type = FF_COLOR_YUV,
161         .pixel_type = FF_PIXEL_PLANAR,
162         .depth = 16,
163         .x_chroma_shift = 1, .y_chroma_shift = 1,
164     },
165     [PIX_FMT_YUV422P16BE] = {
166         .name = "yuv422p16be",
167         .nb_channels = 3,
168         .color_type = FF_COLOR_YUV,
169         .pixel_type = FF_PIXEL_PLANAR,
170         .depth = 16,
171         .x_chroma_shift = 1, .y_chroma_shift = 0,
172     },
173     [PIX_FMT_YUV444P16BE] = {
174         .name = "yuv444p16be",
175         .nb_channels = 3,
176         .color_type = FF_COLOR_YUV,
177         .pixel_type = FF_PIXEL_PLANAR,
178         .depth = 16,
179         .x_chroma_shift = 0, .y_chroma_shift = 0,
180     },
181
182
183     /* YUV formats with alpha plane */
184     [PIX_FMT_YUVA420P] = {
185         .name = "yuva420p",
186         .nb_channels = 4,
187         .color_type = FF_COLOR_YUV,
188         .pixel_type = FF_PIXEL_PLANAR,
189         .depth = 8,
190         .x_chroma_shift = 1, .y_chroma_shift = 1,
191     },
192
193     /* JPEG YUV */
194     [PIX_FMT_YUVJ420P] = {
195         .name = "yuvj420p",
196         .nb_channels = 3,
197         .color_type = FF_COLOR_YUV_JPEG,
198         .pixel_type = FF_PIXEL_PLANAR,
199         .depth = 8,
200         .x_chroma_shift = 1, .y_chroma_shift = 1,
201     },
202     [PIX_FMT_YUVJ422P] = {
203         .name = "yuvj422p",
204         .nb_channels = 3,
205         .color_type = FF_COLOR_YUV_JPEG,
206         .pixel_type = FF_PIXEL_PLANAR,
207         .depth = 8,
208         .x_chroma_shift = 1, .y_chroma_shift = 0,
209     },
210     [PIX_FMT_YUVJ444P] = {
211         .name = "yuvj444p",
212         .nb_channels = 3,
213         .color_type = FF_COLOR_YUV_JPEG,
214         .pixel_type = FF_PIXEL_PLANAR,
215         .depth = 8,
216         .x_chroma_shift = 0, .y_chroma_shift = 0,
217     },
218     [PIX_FMT_YUVJ440P] = {
219         .name = "yuvj440p",
220         .nb_channels = 3,
221         .color_type = FF_COLOR_YUV_JPEG,
222         .pixel_type = FF_PIXEL_PLANAR,
223         .depth = 8,
224         .x_chroma_shift = 0, .y_chroma_shift = 1,
225     },
226
227     /* RGB formats */
228     [PIX_FMT_RGB24] = {
229         .name = "rgb24",
230         .nb_channels = 3,
231         .color_type = FF_COLOR_RGB,
232         .pixel_type = FF_PIXEL_PACKED,
233         .depth = 8,
234         .x_chroma_shift = 0, .y_chroma_shift = 0,
235     },
236     [PIX_FMT_BGR24] = {
237         .name = "bgr24",
238         .nb_channels = 3,
239         .color_type = FF_COLOR_RGB,
240         .pixel_type = FF_PIXEL_PACKED,
241         .depth = 8,
242         .x_chroma_shift = 0, .y_chroma_shift = 0,
243     },
244     [PIX_FMT_ARGB] = {
245         .name = "argb",
246         .nb_channels = 4, .is_alpha = 1,
247         .color_type = FF_COLOR_RGB,
248         .pixel_type = FF_PIXEL_PACKED,
249         .depth = 8,
250         .x_chroma_shift = 0, .y_chroma_shift = 0,
251     },
252     [PIX_FMT_RGB48BE] = {
253         .name = "rgb48be",
254         .nb_channels = 3,
255         .color_type = FF_COLOR_RGB,
256         .pixel_type = FF_PIXEL_PACKED,
257         .depth = 16,
258         .x_chroma_shift = 0, .y_chroma_shift = 0,
259     },
260     [PIX_FMT_RGB48LE] = {
261         .name = "rgb48le",
262         .nb_channels = 3,
263         .color_type = FF_COLOR_RGB,
264         .pixel_type = FF_PIXEL_PACKED,
265         .depth = 16,
266         .x_chroma_shift = 0, .y_chroma_shift = 0,
267     },
268     [PIX_FMT_RGB565BE] = {
269         .name = "rgb565be",
270         .nb_channels = 3,
271         .color_type = FF_COLOR_RGB,
272         .pixel_type = FF_PIXEL_PACKED,
273         .depth = 5,
274         .x_chroma_shift = 0, .y_chroma_shift = 0,
275     },
276     [PIX_FMT_RGB565LE] = {
277         .name = "rgb565le",
278         .nb_channels = 3,
279         .color_type = FF_COLOR_RGB,
280         .pixel_type = FF_PIXEL_PACKED,
281         .depth = 5,
282         .x_chroma_shift = 0, .y_chroma_shift = 0,
283     },
284     [PIX_FMT_RGB555BE] = {
285         .name = "rgb555be",
286         .nb_channels = 3,
287         .color_type = FF_COLOR_RGB,
288         .pixel_type = FF_PIXEL_PACKED,
289         .depth = 5,
290         .x_chroma_shift = 0, .y_chroma_shift = 0,
291     },
292     [PIX_FMT_RGB555LE] = {
293         .name = "rgb555le",
294         .nb_channels = 3,
295         .color_type = FF_COLOR_RGB,
296         .pixel_type = FF_PIXEL_PACKED,
297         .depth = 5,
298         .x_chroma_shift = 0, .y_chroma_shift = 0,
299     },
300
301     /* gray / mono formats */
302     [PIX_FMT_GRAY16BE] = {
303         .name = "gray16be",
304         .nb_channels = 1,
305         .color_type = FF_COLOR_GRAY,
306         .pixel_type = FF_PIXEL_PLANAR,
307         .depth = 16,
308     },
309     [PIX_FMT_GRAY16LE] = {
310         .name = "gray16le",
311         .nb_channels = 1,
312         .color_type = FF_COLOR_GRAY,
313         .pixel_type = FF_PIXEL_PLANAR,
314         .depth = 16,
315     },
316     [PIX_FMT_GRAY8] = {
317         .name = "gray",
318         .nb_channels = 1,
319         .color_type = FF_COLOR_GRAY,
320         .pixel_type = FF_PIXEL_PLANAR,
321         .depth = 8,
322     },
323     [PIX_FMT_MONOWHITE] = {
324         .name = "monow",
325         .nb_channels = 1,
326         .color_type = FF_COLOR_GRAY,
327         .pixel_type = FF_PIXEL_PLANAR,
328         .depth = 1,
329     },
330     [PIX_FMT_MONOBLACK] = {
331         .name = "monob",
332         .nb_channels = 1,
333         .color_type = FF_COLOR_GRAY,
334         .pixel_type = FF_PIXEL_PLANAR,
335         .depth = 1,
336     },
337
338     /* paletted formats */
339     [PIX_FMT_PAL8] = {
340         .name = "pal8",
341         .nb_channels = 4, .is_alpha = 1,
342         .color_type = FF_COLOR_RGB,
343         .pixel_type = FF_PIXEL_PALETTE,
344         .depth = 8,
345     },
346     [PIX_FMT_XVMC_MPEG2_MC] = {
347         .name = "xvmcmc",
348         .is_hwaccel = 1,
349     },
350     [PIX_FMT_XVMC_MPEG2_IDCT] = {
351         .name = "xvmcidct",
352         .is_hwaccel = 1,
353     },
354     [PIX_FMT_VDPAU_MPEG1] = {
355         .name = "vdpau_mpeg1",
356         .is_hwaccel = 1,
357         .x_chroma_shift = 1, .y_chroma_shift = 1,
358     },
359     [PIX_FMT_VDPAU_MPEG2] = {
360         .name = "vdpau_mpeg2",
361         .is_hwaccel = 1,
362         .x_chroma_shift = 1, .y_chroma_shift = 1,
363     },
364     [PIX_FMT_VDPAU_H264] = {
365         .name = "vdpau_h264",
366         .is_hwaccel = 1,
367         .x_chroma_shift = 1, .y_chroma_shift = 1,
368     },
369     [PIX_FMT_VDPAU_WMV3] = {
370         .name = "vdpau_wmv3",
371         .is_hwaccel = 1,
372         .x_chroma_shift = 1, .y_chroma_shift = 1,
373     },
374     [PIX_FMT_VDPAU_VC1] = {
375         .name = "vdpau_vc1",
376         .is_hwaccel = 1,
377         .x_chroma_shift = 1, .y_chroma_shift = 1,
378     },
379     [PIX_FMT_VDPAU_MPEG4] = {
380         .name = "vdpau_mpeg4",
381         .is_hwaccel = 1,
382         .x_chroma_shift = 1, .y_chroma_shift = 1,
383     },
384     [PIX_FMT_UYYVYY411] = {
385         .name = "uyyvyy411",
386         .nb_channels = 1,
387         .color_type = FF_COLOR_YUV,
388         .pixel_type = FF_PIXEL_PACKED,
389         .depth = 8,
390         .x_chroma_shift = 2, .y_chroma_shift = 0,
391     },
392     [PIX_FMT_ABGR] = {
393         .name = "abgr",
394         .nb_channels = 4, .is_alpha = 1,
395         .color_type = FF_COLOR_RGB,
396         .pixel_type = FF_PIXEL_PACKED,
397         .depth = 8,
398         .x_chroma_shift = 0, .y_chroma_shift = 0,
399     },
400     [PIX_FMT_BGR565BE] = {
401         .name = "bgr565be",
402         .nb_channels = 3,
403         .color_type = FF_COLOR_RGB,
404         .pixel_type = FF_PIXEL_PACKED,
405         .depth = 5,
406         .x_chroma_shift = 0, .y_chroma_shift = 0,
407     },
408     [PIX_FMT_BGR565LE] = {
409         .name = "bgr565le",
410         .nb_channels = 3,
411         .color_type = FF_COLOR_RGB,
412         .pixel_type = FF_PIXEL_PACKED,
413         .depth = 5,
414         .x_chroma_shift = 0, .y_chroma_shift = 0,
415     },
416     [PIX_FMT_BGR555BE] = {
417         .name = "bgr555be",
418         .nb_channels = 3,
419         .color_type = FF_COLOR_RGB,
420         .pixel_type = FF_PIXEL_PACKED,
421         .depth = 5,
422         .x_chroma_shift = 0, .y_chroma_shift = 0,
423     },
424     [PIX_FMT_BGR555LE] = {
425         .name = "bgr555le",
426         .nb_channels = 3,
427         .color_type = FF_COLOR_RGB,
428         .pixel_type = FF_PIXEL_PACKED,
429         .depth = 5,
430         .x_chroma_shift = 0, .y_chroma_shift = 0,
431     },
432     [PIX_FMT_RGB8] = {
433         .name = "rgb8",
434         .nb_channels = 1,
435         .color_type = FF_COLOR_RGB,
436         .pixel_type = FF_PIXEL_PACKED,
437         .depth = 8,
438         .x_chroma_shift = 0, .y_chroma_shift = 0,
439     },
440     [PIX_FMT_RGB4] = {
441         .name = "rgb4",
442         .nb_channels = 1,
443         .color_type = FF_COLOR_RGB,
444         .pixel_type = FF_PIXEL_PACKED,
445         .depth = 4,
446         .x_chroma_shift = 0, .y_chroma_shift = 0,
447     },
448     [PIX_FMT_RGB4_BYTE] = {
449         .name = "rgb4_byte",
450         .nb_channels = 1,
451         .color_type = FF_COLOR_RGB,
452         .pixel_type = FF_PIXEL_PACKED,
453         .depth = 8,
454         .x_chroma_shift = 0, .y_chroma_shift = 0,
455     },
456     [PIX_FMT_BGR8] = {
457         .name = "bgr8",
458         .nb_channels = 1,
459         .color_type = FF_COLOR_RGB,
460         .pixel_type = FF_PIXEL_PACKED,
461         .depth = 8,
462         .x_chroma_shift = 0, .y_chroma_shift = 0,
463     },
464     [PIX_FMT_BGR4] = {
465         .name = "bgr4",
466         .nb_channels = 1,
467         .color_type = FF_COLOR_RGB,
468         .pixel_type = FF_PIXEL_PACKED,
469         .depth = 4,
470         .x_chroma_shift = 0, .y_chroma_shift = 0,
471     },
472     [PIX_FMT_BGR4_BYTE] = {
473         .name = "bgr4_byte",
474         .nb_channels = 1,
475         .color_type = FF_COLOR_RGB,
476         .pixel_type = FF_PIXEL_PACKED,
477         .depth = 8,
478         .x_chroma_shift = 0, .y_chroma_shift = 0,
479     },
480     [PIX_FMT_NV12] = {
481         .name = "nv12",
482         .nb_channels = 2,
483         .color_type = FF_COLOR_YUV,
484         .pixel_type = FF_PIXEL_PLANAR,
485         .depth = 8,
486         .x_chroma_shift = 1, .y_chroma_shift = 1,
487     },
488     [PIX_FMT_NV21] = {
489         .name = "nv21",
490         .nb_channels = 2,
491         .color_type = FF_COLOR_YUV,
492         .pixel_type = FF_PIXEL_PLANAR,
493         .depth = 8,
494         .x_chroma_shift = 1, .y_chroma_shift = 1,
495     },
496
497     [PIX_FMT_BGRA] = {
498         .name = "bgra",
499         .nb_channels = 4, .is_alpha = 1,
500         .color_type = FF_COLOR_RGB,
501         .pixel_type = FF_PIXEL_PACKED,
502         .depth = 8,
503         .x_chroma_shift = 0, .y_chroma_shift = 0,
504     },
505     [PIX_FMT_RGBA] = {
506         .name = "rgba",
507         .nb_channels = 4, .is_alpha = 1,
508         .color_type = FF_COLOR_RGB,
509         .pixel_type = FF_PIXEL_PACKED,
510         .depth = 8,
511         .x_chroma_shift = 0, .y_chroma_shift = 0,
512     },
513
514     /* VA API formats */
515     [PIX_FMT_VAAPI_MOCO] = {
516         .name = "vaapi_moco",
517         .is_hwaccel = 1,
518         .x_chroma_shift = 1, .y_chroma_shift = 1,
519     },
520     [PIX_FMT_VAAPI_IDCT] = {
521         .name = "vaapi_idct",
522         .is_hwaccel = 1,
523         .x_chroma_shift = 1, .y_chroma_shift = 1,
524     },
525     [PIX_FMT_VAAPI_VLD] = {
526         .name = "vaapi_vld",
527         .is_hwaccel = 1,
528         .x_chroma_shift = 1, .y_chroma_shift = 1,
529     },
530 };
531
532 void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int *v_shift)
533 {
534     *h_shift = pix_fmt_info[pix_fmt].x_chroma_shift;
535     *v_shift = pix_fmt_info[pix_fmt].y_chroma_shift;
536 }
537
538 const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt)
539 {
540     if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB)
541         return NULL;
542     else
543         return pix_fmt_info[pix_fmt].name;
544 }
545
546 static enum PixelFormat avcodec_get_pix_fmt_internal(const char *name)
547 {
548     int i;
549
550     for (i=0; i < PIX_FMT_NB; i++)
551         if (pix_fmt_info[i].name && !strcmp(pix_fmt_info[i].name, name))
552             return i;
553     return PIX_FMT_NONE;
554 }
555
556 #if HAVE_BIGENDIAN
557 #   define X_NE(be, le) be
558 #else
559 #   define X_NE(be, le) le
560 #endif
561
562 enum PixelFormat avcodec_get_pix_fmt(const char *name)
563 {
564     enum PixelFormat pix_fmt;
565
566     if (!strcmp(name, "rgb32"))
567         name = X_NE("argb", "bgra");
568     else if (!strcmp(name, "bgr32"))
569         name = X_NE("abgr", "rgba");
570
571     pix_fmt = avcodec_get_pix_fmt_internal(name);
572     if (pix_fmt == PIX_FMT_NONE) {
573         char name2[32];
574         snprintf(name2, sizeof(name2), "%s%s", name, X_NE("be", "le"));
575         pix_fmt = avcodec_get_pix_fmt_internal(name2);
576     }
577     return pix_fmt;
578 }
579
580 void avcodec_pix_fmt_string (char *buf, int buf_size, enum PixelFormat pix_fmt)
581 {
582     /* print header */
583     if (pix_fmt < 0)
584         snprintf (buf, buf_size,
585                   "name      " " nb_channels" " depth" " is_alpha"
586             );
587     else{
588         PixFmtInfo info= pix_fmt_info[pix_fmt];
589
590         char is_alpha_char= info.is_alpha ? 'y' : 'n';
591
592         snprintf (buf, buf_size,
593                   "%-11s %5d %9d %6c",
594                   info.name,
595                   info.nb_channels,
596                   info.depth,
597                   is_alpha_char
598             );
599     }
600 }
601
602 int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt)
603 {
604     return pix_fmt_info[pix_fmt].is_hwaccel;
605 }
606
607 int ff_set_systematic_pal(uint32_t pal[256], enum PixelFormat pix_fmt){
608     int i;
609
610     for(i=0; i<256; i++){
611         int r,g,b;
612
613         switch(pix_fmt) {
614         case PIX_FMT_RGB8:
615             r= (i>>5    )*36;
616             g= ((i>>2)&7)*36;
617             b= (i&3     )*85;
618             break;
619         case PIX_FMT_BGR8:
620             b= (i>>6    )*85;
621             g= ((i>>3)&7)*36;
622             r= (i&7     )*36;
623             break;
624         case PIX_FMT_RGB4_BYTE:
625             r= (i>>3    )*255;
626             g= ((i>>1)&3)*85;
627             b= (i&1     )*255;
628             break;
629         case PIX_FMT_BGR4_BYTE:
630             b= (i>>3    )*255;
631             g= ((i>>1)&3)*85;
632             r= (i&1     )*255;
633             break;
634         case PIX_FMT_GRAY8:
635             r=b=g= i;
636             break;
637         default:
638             return -1;
639         }
640         pal[i] =  b + (g<<8) + (r<<16);
641     }
642
643     return 0;
644 }
645
646 int ff_fill_linesize(AVPicture *picture, enum PixelFormat pix_fmt, int width)
647 {
648     int w2;
649     const PixFmtInfo *pinfo;
650
651     memset(picture->linesize, 0, sizeof(picture->linesize));
652
653     pinfo = &pix_fmt_info[pix_fmt];
654     switch(pix_fmt) {
655     case PIX_FMT_YUV420P:
656     case PIX_FMT_YUV422P:
657     case PIX_FMT_YUV444P:
658     case PIX_FMT_YUV410P:
659     case PIX_FMT_YUV411P:
660     case PIX_FMT_YUV440P:
661     case PIX_FMT_YUVJ420P:
662     case PIX_FMT_YUVJ422P:
663     case PIX_FMT_YUVJ444P:
664     case PIX_FMT_YUVJ440P:
665         w2 = (width + (1 << pinfo->x_chroma_shift) - 1) >> pinfo->x_chroma_shift;
666         picture->linesize[0] = width;
667         picture->linesize[1] = w2;
668         picture->linesize[2] = w2;
669         break;
670     case PIX_FMT_YUV420P16LE:
671     case PIX_FMT_YUV422P16LE:
672     case PIX_FMT_YUV444P16LE:
673     case PIX_FMT_YUV420P16BE:
674     case PIX_FMT_YUV422P16BE:
675     case PIX_FMT_YUV444P16BE:
676         w2 = (width + (1 << pinfo->x_chroma_shift) - 1) >> pinfo->x_chroma_shift;
677         picture->linesize[0] = 2*width;
678         picture->linesize[1] = 2*w2;
679         picture->linesize[2] = 2*w2;
680         break;
681     case PIX_FMT_YUVA420P:
682         w2 = (width + (1 << pinfo->x_chroma_shift) - 1) >> pinfo->x_chroma_shift;
683         picture->linesize[0] = width;
684         picture->linesize[1] = w2;
685         picture->linesize[2] = w2;
686         picture->linesize[3] = width;
687         break;
688     case PIX_FMT_NV12:
689     case PIX_FMT_NV21:
690         w2 = (width + (1 << pinfo->x_chroma_shift) - 1) >> pinfo->x_chroma_shift;
691         picture->linesize[0] = width;
692         picture->linesize[1] = w2;
693         break;
694     case PIX_FMT_RGB24:
695     case PIX_FMT_BGR24:
696         picture->linesize[0] = width * 3;
697         break;
698     case PIX_FMT_ARGB:
699     case PIX_FMT_ABGR:
700     case PIX_FMT_RGBA:
701     case PIX_FMT_BGRA:
702         picture->linesize[0] = width * 4;
703         break;
704     case PIX_FMT_RGB48BE:
705     case PIX_FMT_RGB48LE:
706         picture->linesize[0] = width * 6;
707         break;
708     case PIX_FMT_GRAY16BE:
709     case PIX_FMT_GRAY16LE:
710     case PIX_FMT_BGR555BE:
711     case PIX_FMT_BGR555LE:
712     case PIX_FMT_BGR565BE:
713     case PIX_FMT_BGR565LE:
714     case PIX_FMT_RGB555BE:
715     case PIX_FMT_RGB555LE:
716     case PIX_FMT_RGB565BE:
717     case PIX_FMT_RGB565LE:
718     case PIX_FMT_YUYV422:
719         picture->linesize[0] = width * 2;
720         break;
721     case PIX_FMT_UYVY422:
722         picture->linesize[0] = width * 2;
723         break;
724     case PIX_FMT_UYYVYY411:
725         picture->linesize[0] = width + width/2;
726         break;
727     case PIX_FMT_RGB4:
728     case PIX_FMT_BGR4:
729         picture->linesize[0] = width / 2;
730         break;
731     case PIX_FMT_MONOWHITE:
732     case PIX_FMT_MONOBLACK:
733         picture->linesize[0] = (width + 7) >> 3;
734         break;
735     case PIX_FMT_PAL8:
736     case PIX_FMT_RGB8:
737     case PIX_FMT_BGR8:
738     case PIX_FMT_RGB4_BYTE:
739     case PIX_FMT_BGR4_BYTE:
740     case PIX_FMT_GRAY8:
741         picture->linesize[0] = width;
742         break;
743     default:
744         return -1;
745     }
746     return 0;
747 }
748
749 int ff_fill_pointer(AVPicture *picture, uint8_t *ptr, enum PixelFormat pix_fmt,
750                     int height)
751 {
752     int size, h2, size2;
753     const PixFmtInfo *pinfo;
754
755     pinfo = &pix_fmt_info[pix_fmt];
756     size = picture->linesize[0] * height;
757     switch(pix_fmt) {
758     case PIX_FMT_YUV420P:
759     case PIX_FMT_YUV422P:
760     case PIX_FMT_YUV444P:
761     case PIX_FMT_YUV410P:
762     case PIX_FMT_YUV411P:
763     case PIX_FMT_YUV440P:
764     case PIX_FMT_YUVJ420P:
765     case PIX_FMT_YUVJ422P:
766     case PIX_FMT_YUVJ444P:
767     case PIX_FMT_YUVJ440P:
768     case PIX_FMT_YUV420P16LE:
769     case PIX_FMT_YUV422P16LE:
770     case PIX_FMT_YUV444P16LE:
771     case PIX_FMT_YUV420P16BE:
772     case PIX_FMT_YUV422P16BE:
773     case PIX_FMT_YUV444P16BE:
774         h2 = (height + (1 << pinfo->y_chroma_shift) - 1) >> pinfo->y_chroma_shift;
775         size2 = picture->linesize[1] * h2;
776         picture->data[0] = ptr;
777         picture->data[1] = picture->data[0] + size;
778         picture->data[2] = picture->data[1] + size2;
779         picture->data[3] = NULL;
780         return size + 2 * size2;
781     case PIX_FMT_YUVA420P:
782         h2 = (height + (1 << pinfo->y_chroma_shift) - 1) >> pinfo->y_chroma_shift;
783         size2 = picture->linesize[1] * h2;
784         picture->data[0] = ptr;
785         picture->data[1] = picture->data[0] + size;
786         picture->data[2] = picture->data[1] + size2;
787         picture->data[3] = picture->data[1] + size2 + size2;
788         return 2 * size + 2 * size2;
789     case PIX_FMT_NV12:
790     case PIX_FMT_NV21:
791         h2 = (height + (1 << pinfo->y_chroma_shift) - 1) >> pinfo->y_chroma_shift;
792         size2 = picture->linesize[1] * h2 * 2;
793         picture->data[0] = ptr;
794         picture->data[1] = picture->data[0] + size;
795         picture->data[2] = NULL;
796         picture->data[3] = NULL;
797         return size + 2 * size2;
798     case PIX_FMT_RGB24:
799     case PIX_FMT_BGR24:
800     case PIX_FMT_ARGB:
801     case PIX_FMT_ABGR:
802     case PIX_FMT_RGBA:
803     case PIX_FMT_BGRA:
804     case PIX_FMT_RGB48BE:
805     case PIX_FMT_RGB48LE:
806     case PIX_FMT_GRAY16BE:
807     case PIX_FMT_GRAY16LE:
808     case PIX_FMT_BGR555BE:
809     case PIX_FMT_BGR555LE:
810     case PIX_FMT_BGR565BE:
811     case PIX_FMT_BGR565LE:
812     case PIX_FMT_RGB555BE:
813     case PIX_FMT_RGB555LE:
814     case PIX_FMT_RGB565BE:
815     case PIX_FMT_RGB565LE:
816     case PIX_FMT_YUYV422:
817     case PIX_FMT_UYVY422:
818     case PIX_FMT_UYYVYY411:
819     case PIX_FMT_RGB4:
820     case PIX_FMT_BGR4:
821     case PIX_FMT_MONOWHITE:
822     case PIX_FMT_MONOBLACK:
823         picture->data[0] = ptr;
824         picture->data[1] = NULL;
825         picture->data[2] = NULL;
826         picture->data[3] = NULL;
827         return size;
828     case PIX_FMT_PAL8:
829     case PIX_FMT_RGB8:
830     case PIX_FMT_BGR8:
831     case PIX_FMT_RGB4_BYTE:
832     case PIX_FMT_BGR4_BYTE:
833     case PIX_FMT_GRAY8:
834         size2 = (size + 3) & ~3;
835         picture->data[0] = ptr;
836         picture->data[1] = ptr + size2; /* palette is stored here as 256 32 bit words */
837         picture->data[2] = NULL;
838         picture->data[3] = NULL;
839         return size2 + 256 * 4;
840     default:
841         picture->data[0] = NULL;
842         picture->data[1] = NULL;
843         picture->data[2] = NULL;
844         picture->data[3] = NULL;
845         return -1;
846     }
847 }
848
849 int avpicture_fill(AVPicture *picture, uint8_t *ptr,
850                    enum PixelFormat pix_fmt, int width, int height)
851 {
852
853     if(avcodec_check_dimensions(NULL, width, height))
854         return -1;
855
856     if (ff_fill_linesize(picture, pix_fmt, width))
857         return -1;
858
859     return ff_fill_pointer(picture, ptr, pix_fmt, height);
860 }
861
862 int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width, int height,
863                      unsigned char *dest, int dest_size)
864 {
865     const PixFmtInfo* pf = &pix_fmt_info[pix_fmt];
866     int i, j, w, ow, h, oh, data_planes;
867     const unsigned char* s;
868     int size = avpicture_get_size(pix_fmt, width, height);
869
870     if (size > dest_size || size < 0)
871         return -1;
872
873     if (pf->pixel_type == FF_PIXEL_PACKED || pf->pixel_type == FF_PIXEL_PALETTE) {
874         if (pix_fmt == PIX_FMT_YUYV422 ||
875             pix_fmt == PIX_FMT_UYVY422 ||
876             pix_fmt == PIX_FMT_BGR565BE ||
877             pix_fmt == PIX_FMT_BGR565LE ||
878             pix_fmt == PIX_FMT_BGR555BE ||
879             pix_fmt == PIX_FMT_BGR555LE ||
880             pix_fmt == PIX_FMT_RGB565BE ||
881             pix_fmt == PIX_FMT_RGB565LE ||
882             pix_fmt == PIX_FMT_RGB555BE ||
883             pix_fmt == PIX_FMT_RGB555LE)
884             w = width * 2;
885         else if (pix_fmt == PIX_FMT_UYYVYY411)
886             w = width + width/2;
887         else if (pix_fmt == PIX_FMT_PAL8)
888             w = width;
889         else
890             w = width * (pf->depth * pf->nb_channels / 8);
891
892         data_planes = 1;
893         h = height;
894     } else {
895         data_planes = pf->nb_channels;
896         w = (width*pf->depth + 7)/8;
897         h = height;
898     }
899
900     ow = w;
901     oh = h;
902
903     for (i=0; i<data_planes; i++) {
904         if (i == 1) {
905             w = ((width >> pf->x_chroma_shift) * pf->depth + 7) / 8;
906             h = height >> pf->y_chroma_shift;
907         } else if (i == 3) {
908             w = ow;
909             h = oh;
910         }
911         s = src->data[i];
912         for(j=0; j<h; j++) {
913             memcpy(dest, s, w);
914             dest += w;
915             s += src->linesize[i];
916         }
917     }
918
919     if (pf->pixel_type == FF_PIXEL_PALETTE)
920         memcpy((unsigned char *)(((size_t)dest + 3) & ~3), src->data[1], 256 * 4);
921
922     return size;
923 }
924
925 int avpicture_get_size(enum PixelFormat pix_fmt, int width, int height)
926 {
927     AVPicture dummy_pict;
928     if(avcodec_check_dimensions(NULL, width, height))
929         return -1;
930     switch (pix_fmt) {
931     case PIX_FMT_RGB8:
932     case PIX_FMT_BGR8:
933     case PIX_FMT_RGB4_BYTE:
934     case PIX_FMT_BGR4_BYTE:
935     case PIX_FMT_GRAY8:
936         // do not include palette for these pseudo-paletted formats
937         return width * height;
938     }
939     return avpicture_fill(&dummy_pict, NULL, pix_fmt, width, height);
940 }
941
942 int avcodec_get_pix_fmt_loss(enum PixelFormat dst_pix_fmt, enum PixelFormat src_pix_fmt,
943                              int has_alpha)
944 {
945     const PixFmtInfo *pf, *ps;
946     int loss;
947
948     ps = &pix_fmt_info[src_pix_fmt];
949
950     /* compute loss */
951     loss = 0;
952     pf = &pix_fmt_info[dst_pix_fmt];
953     if (pf->depth < ps->depth ||
954         ((dst_pix_fmt == PIX_FMT_RGB555BE || dst_pix_fmt == PIX_FMT_RGB555LE) &&
955          (src_pix_fmt == PIX_FMT_RGB565BE || src_pix_fmt == PIX_FMT_RGB565LE)))
956         loss |= FF_LOSS_DEPTH;
957     if (pf->x_chroma_shift > ps->x_chroma_shift ||
958         pf->y_chroma_shift > ps->y_chroma_shift)
959         loss |= FF_LOSS_RESOLUTION;
960     switch(pf->color_type) {
961     case FF_COLOR_RGB:
962         if (ps->color_type != FF_COLOR_RGB &&
963             ps->color_type != FF_COLOR_GRAY)
964             loss |= FF_LOSS_COLORSPACE;
965         break;
966     case FF_COLOR_GRAY:
967         if (ps->color_type != FF_COLOR_GRAY)
968             loss |= FF_LOSS_COLORSPACE;
969         break;
970     case FF_COLOR_YUV:
971         if (ps->color_type != FF_COLOR_YUV)
972             loss |= FF_LOSS_COLORSPACE;
973         break;
974     case FF_COLOR_YUV_JPEG:
975         if (ps->color_type != FF_COLOR_YUV_JPEG &&
976             ps->color_type != FF_COLOR_YUV &&
977             ps->color_type != FF_COLOR_GRAY)
978             loss |= FF_LOSS_COLORSPACE;
979         break;
980     default:
981         /* fail safe test */
982         if (ps->color_type != pf->color_type)
983             loss |= FF_LOSS_COLORSPACE;
984         break;
985     }
986     if (pf->color_type == FF_COLOR_GRAY &&
987         ps->color_type != FF_COLOR_GRAY)
988         loss |= FF_LOSS_CHROMA;
989     if (!pf->is_alpha && (ps->is_alpha && has_alpha))
990         loss |= FF_LOSS_ALPHA;
991     if (pf->pixel_type == FF_PIXEL_PALETTE &&
992         (ps->pixel_type != FF_PIXEL_PALETTE && ps->color_type != FF_COLOR_GRAY))
993         loss |= FF_LOSS_COLORQUANT;
994     return loss;
995 }
996
997 static int avg_bits_per_pixel(enum PixelFormat pix_fmt)
998 {
999     int bits;
1000     const PixFmtInfo *pf;
1001
1002     pf = &pix_fmt_info[pix_fmt];
1003     switch(pf->pixel_type) {
1004     case FF_PIXEL_PACKED:
1005         switch(pix_fmt) {
1006         case PIX_FMT_YUYV422:
1007         case PIX_FMT_UYVY422:
1008         case PIX_FMT_RGB565BE:
1009         case PIX_FMT_RGB565LE:
1010         case PIX_FMT_RGB555BE:
1011         case PIX_FMT_RGB555LE:
1012         case PIX_FMT_BGR565BE:
1013         case PIX_FMT_BGR565LE:
1014         case PIX_FMT_BGR555BE:
1015         case PIX_FMT_BGR555LE:
1016             bits = 16;
1017             break;
1018         case PIX_FMT_UYYVYY411:
1019             bits = 12;
1020             break;
1021         default:
1022             bits = pf->depth * pf->nb_channels;
1023             break;
1024         }
1025         break;
1026     case FF_PIXEL_PLANAR:
1027         if (pf->x_chroma_shift == 0 && pf->y_chroma_shift == 0) {
1028             bits = pf->depth * pf->nb_channels;
1029         } else {
1030             bits = pf->depth + ((2 * pf->depth) >>
1031                                 (pf->x_chroma_shift + pf->y_chroma_shift));
1032         }
1033         break;
1034     case FF_PIXEL_PALETTE:
1035         bits = 8;
1036         break;
1037     default:
1038         bits = -1;
1039         break;
1040     }
1041     return bits;
1042 }
1043
1044 static enum PixelFormat avcodec_find_best_pix_fmt1(int64_t pix_fmt_mask,
1045                                       enum PixelFormat src_pix_fmt,
1046                                       int has_alpha,
1047                                       int loss_mask)
1048 {
1049     int dist, i, loss, min_dist;
1050     enum PixelFormat dst_pix_fmt;
1051
1052     /* find exact color match with smallest size */
1053     dst_pix_fmt = -1;
1054     min_dist = 0x7fffffff;
1055     for(i = 0;i < PIX_FMT_NB; i++) {
1056         if (pix_fmt_mask & (1ULL << i)) {
1057             loss = avcodec_get_pix_fmt_loss(i, src_pix_fmt, has_alpha) & loss_mask;
1058             if (loss == 0) {
1059                 dist = avg_bits_per_pixel(i);
1060                 if (dist < min_dist) {
1061                     min_dist = dist;
1062                     dst_pix_fmt = i;
1063                 }
1064             }
1065         }
1066     }
1067     return dst_pix_fmt;
1068 }
1069
1070 enum PixelFormat avcodec_find_best_pix_fmt(int64_t pix_fmt_mask, enum PixelFormat src_pix_fmt,
1071                               int has_alpha, int *loss_ptr)
1072 {
1073     enum PixelFormat dst_pix_fmt;
1074     int loss_mask, i;
1075     static const int loss_mask_order[] = {
1076         ~0, /* no loss first */
1077         ~FF_LOSS_ALPHA,
1078         ~FF_LOSS_RESOLUTION,
1079         ~(FF_LOSS_COLORSPACE | FF_LOSS_RESOLUTION),
1080         ~FF_LOSS_COLORQUANT,
1081         ~FF_LOSS_DEPTH,
1082         0,
1083     };
1084
1085     /* try with successive loss */
1086     i = 0;
1087     for(;;) {
1088         loss_mask = loss_mask_order[i++];
1089         dst_pix_fmt = avcodec_find_best_pix_fmt1(pix_fmt_mask, src_pix_fmt,
1090                                                  has_alpha, loss_mask);
1091         if (dst_pix_fmt >= 0)
1092             goto found;
1093         if (loss_mask == 0)
1094             break;
1095     }
1096     return -1;
1097  found:
1098     if (loss_ptr)
1099         *loss_ptr = avcodec_get_pix_fmt_loss(dst_pix_fmt, src_pix_fmt, has_alpha);
1100     return dst_pix_fmt;
1101 }
1102
1103 void ff_img_copy_plane(uint8_t *dst, int dst_wrap,
1104                            const uint8_t *src, int src_wrap,
1105                            int width, int height)
1106 {
1107     if((!dst) || (!src))
1108         return;
1109     for(;height > 0; height--) {
1110         memcpy(dst, src, width);
1111         dst += dst_wrap;
1112         src += src_wrap;
1113     }
1114 }
1115
1116 int ff_get_plane_bytewidth(enum PixelFormat pix_fmt, int width, int plane)
1117 {
1118     int bits;
1119     const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
1120
1121     pf = &pix_fmt_info[pix_fmt];
1122     switch(pf->pixel_type) {
1123     case FF_PIXEL_PACKED:
1124         switch(pix_fmt) {
1125         case PIX_FMT_YUYV422:
1126         case PIX_FMT_UYVY422:
1127         case PIX_FMT_RGB565BE:
1128         case PIX_FMT_RGB565LE:
1129         case PIX_FMT_RGB555BE:
1130         case PIX_FMT_RGB555LE:
1131         case PIX_FMT_BGR565BE:
1132         case PIX_FMT_BGR565LE:
1133         case PIX_FMT_BGR555BE:
1134         case PIX_FMT_BGR555LE:
1135             bits = 16;
1136             break;
1137         case PIX_FMT_UYYVYY411:
1138             bits = 12;
1139             break;
1140         default:
1141             bits = pf->depth * pf->nb_channels;
1142             break;
1143         }
1144         return (width * bits + 7) >> 3;
1145         break;
1146     case FF_PIXEL_PLANAR:
1147             if (plane == 1 || plane == 2)
1148                 width= -((-width)>>pf->x_chroma_shift);
1149
1150             return (width * pf->depth + 7) >> 3;
1151         break;
1152     case FF_PIXEL_PALETTE:
1153         if (plane == 0)
1154             return width;
1155         break;
1156     }
1157
1158     return -1;
1159 }
1160
1161 void av_picture_copy(AVPicture *dst, const AVPicture *src,
1162                      enum PixelFormat pix_fmt, int width, int height)
1163 {
1164     int i;
1165     const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
1166
1167     switch(pf->pixel_type) {
1168     case FF_PIXEL_PACKED:
1169     case FF_PIXEL_PLANAR:
1170         for(i = 0; i < pf->nb_channels; i++) {
1171             int h;
1172             int bwidth = ff_get_plane_bytewidth(pix_fmt, width, i);
1173             h = height;
1174             if (i == 1 || i == 2) {
1175                 h= -((-height)>>pf->y_chroma_shift);
1176             }
1177             ff_img_copy_plane(dst->data[i], dst->linesize[i],
1178                            src->data[i], src->linesize[i],
1179                            bwidth, h);
1180         }
1181         break;
1182     case FF_PIXEL_PALETTE:
1183         ff_img_copy_plane(dst->data[0], dst->linesize[0],
1184                        src->data[0], src->linesize[0],
1185                        width, height);
1186         /* copy the palette */
1187         memcpy(dst->data[1], src->data[1], 4*256);
1188         break;
1189     }
1190 }
1191
1192 /* 2x2 -> 1x1 */
1193 void ff_shrink22(uint8_t *dst, int dst_wrap,
1194                      const uint8_t *src, int src_wrap,
1195                      int width, int height)
1196 {
1197     int w;
1198     const uint8_t *s1, *s2;
1199     uint8_t *d;
1200
1201     for(;height > 0; height--) {
1202         s1 = src;
1203         s2 = s1 + src_wrap;
1204         d = dst;
1205         for(w = width;w >= 4; w-=4) {
1206             d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
1207             d[1] = (s1[2] + s1[3] + s2[2] + s2[3] + 2) >> 2;
1208             d[2] = (s1[4] + s1[5] + s2[4] + s2[5] + 2) >> 2;
1209             d[3] = (s1[6] + s1[7] + s2[6] + s2[7] + 2) >> 2;
1210             s1 += 8;
1211             s2 += 8;
1212             d += 4;
1213         }
1214         for(;w > 0; w--) {
1215             d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
1216             s1 += 2;
1217             s2 += 2;
1218             d++;
1219         }
1220         src += 2 * src_wrap;
1221         dst += dst_wrap;
1222     }
1223 }
1224
1225 /* 4x4 -> 1x1 */
1226 void ff_shrink44(uint8_t *dst, int dst_wrap,
1227                      const uint8_t *src, int src_wrap,
1228                      int width, int height)
1229 {
1230     int w;
1231     const uint8_t *s1, *s2, *s3, *s4;
1232     uint8_t *d;
1233
1234     for(;height > 0; height--) {
1235         s1 = src;
1236         s2 = s1 + src_wrap;
1237         s3 = s2 + src_wrap;
1238         s4 = s3 + src_wrap;
1239         d = dst;
1240         for(w = width;w > 0; w--) {
1241             d[0] = (s1[0] + s1[1] + s1[2] + s1[3] +
1242                     s2[0] + s2[1] + s2[2] + s2[3] +
1243                     s3[0] + s3[1] + s3[2] + s3[3] +
1244                     s4[0] + s4[1] + s4[2] + s4[3] + 8) >> 4;
1245             s1 += 4;
1246             s2 += 4;
1247             s3 += 4;
1248             s4 += 4;
1249             d++;
1250         }
1251         src += 4 * src_wrap;
1252         dst += dst_wrap;
1253     }
1254 }
1255
1256 /* 8x8 -> 1x1 */
1257 void ff_shrink88(uint8_t *dst, int dst_wrap,
1258                      const uint8_t *src, int src_wrap,
1259                      int width, int height)
1260 {
1261     int w, i;
1262
1263     for(;height > 0; height--) {
1264         for(w = width;w > 0; w--) {
1265             int tmp=0;
1266             for(i=0; i<8; i++){
1267                 tmp += src[0] + src[1] + src[2] + src[3] + src[4] + src[5] + src[6] + src[7];
1268                 src += src_wrap;
1269             }
1270             *(dst++) = (tmp + 32)>>6;
1271             src += 8 - 8*src_wrap;
1272         }
1273         src += 8*src_wrap - 8*width;
1274         dst += dst_wrap - width;
1275     }
1276 }
1277
1278
1279 int avpicture_alloc(AVPicture *picture,
1280                     enum PixelFormat pix_fmt, int width, int height)
1281 {
1282     int size;
1283     void *ptr;
1284
1285     size = avpicture_fill(picture, NULL, pix_fmt, width, height);
1286     if(size<0)
1287         goto fail;
1288     ptr = av_malloc(size);
1289     if (!ptr)
1290         goto fail;
1291     avpicture_fill(picture, ptr, pix_fmt, width, height);
1292     if(picture->data[1] && !picture->data[2])
1293         ff_set_systematic_pal((uint32_t*)picture->data[1], pix_fmt);
1294
1295     return 0;
1296  fail:
1297     memset(picture, 0, sizeof(AVPicture));
1298     return -1;
1299 }
1300
1301 void avpicture_free(AVPicture *picture)
1302 {
1303     av_free(picture->data[0]);
1304 }
1305
1306 /* return true if yuv planar */
1307 static inline int is_yuv_planar(const PixFmtInfo *ps)
1308 {
1309     return (ps->color_type == FF_COLOR_YUV ||
1310             ps->color_type == FF_COLOR_YUV_JPEG) &&
1311         ps->pixel_type == FF_PIXEL_PLANAR;
1312 }
1313
1314 int av_picture_crop(AVPicture *dst, const AVPicture *src,
1315                     enum PixelFormat pix_fmt, int top_band, int left_band)
1316 {
1317     int y_shift;
1318     int x_shift;
1319
1320     if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB || !is_yuv_planar(&pix_fmt_info[pix_fmt]))
1321         return -1;
1322
1323     y_shift = pix_fmt_info[pix_fmt].y_chroma_shift;
1324     x_shift = pix_fmt_info[pix_fmt].x_chroma_shift;
1325
1326     dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
1327     dst->data[1] = src->data[1] + ((top_band >> y_shift) * src->linesize[1]) + (left_band >> x_shift);
1328     dst->data[2] = src->data[2] + ((top_band >> y_shift) * src->linesize[2]) + (left_band >> x_shift);
1329
1330     dst->linesize[0] = src->linesize[0];
1331     dst->linesize[1] = src->linesize[1];
1332     dst->linesize[2] = src->linesize[2];
1333     return 0;
1334 }
1335
1336 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width,
1337                    enum PixelFormat pix_fmt, int padtop, int padbottom, int padleft, int padright,
1338             int *color)
1339 {
1340     uint8_t *optr;
1341     int y_shift;
1342     int x_shift;
1343     int yheight;
1344     int i, y;
1345
1346     if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB ||
1347         !is_yuv_planar(&pix_fmt_info[pix_fmt])) return -1;
1348
1349     for (i = 0; i < 3; i++) {
1350         x_shift = i ? pix_fmt_info[pix_fmt].x_chroma_shift : 0;
1351         y_shift = i ? pix_fmt_info[pix_fmt].y_chroma_shift : 0;
1352
1353         if (padtop || padleft) {
1354             memset(dst->data[i], color[i],
1355                 dst->linesize[i] * (padtop >> y_shift) + (padleft >> x_shift));
1356         }
1357
1358         if (padleft || padright) {
1359             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
1360                 (dst->linesize[i] - (padright >> x_shift));
1361             yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
1362             for (y = 0; y < yheight; y++) {
1363                 memset(optr, color[i], (padleft + padright) >> x_shift);
1364                 optr += dst->linesize[i];
1365             }
1366         }
1367
1368         if (src) { /* first line */
1369             uint8_t *iptr = src->data[i];
1370             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
1371                     (padleft >> x_shift);
1372             memcpy(optr, iptr, (width - padleft - padright) >> x_shift);
1373             iptr += src->linesize[i];
1374             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
1375                 (dst->linesize[i] - (padright >> x_shift));
1376             yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
1377             for (y = 0; y < yheight; y++) {
1378                 memset(optr, color[i], (padleft + padright) >> x_shift);
1379                 memcpy(optr + ((padleft + padright) >> x_shift), iptr,
1380                        (width - padleft - padright) >> x_shift);
1381                 iptr += src->linesize[i];
1382                 optr += dst->linesize[i];
1383             }
1384         }
1385
1386         if (padbottom || padright) {
1387             optr = dst->data[i] + dst->linesize[i] *
1388                 ((height - padbottom) >> y_shift) - (padright >> x_shift);
1389             memset(optr, color[i],dst->linesize[i] *
1390                 (padbottom >> y_shift) + (padright >> x_shift));
1391         }
1392     }
1393     return 0;
1394 }
1395
1396 /* NOTE: we scan all the pixels to have an exact information */
1397 static int get_alpha_info_pal8(const AVPicture *src, int width, int height)
1398 {
1399     const unsigned char *p;
1400     int src_wrap, ret, x, y;
1401     unsigned int a;
1402     uint32_t *palette = (uint32_t *)src->data[1];
1403
1404     p = src->data[0];
1405     src_wrap = src->linesize[0] - width;
1406     ret = 0;
1407     for(y=0;y<height;y++) {
1408         for(x=0;x<width;x++) {
1409             a = palette[p[0]] >> 24;
1410             if (a == 0x00) {
1411                 ret |= FF_ALPHA_TRANSP;
1412             } else if (a != 0xff) {
1413                 ret |= FF_ALPHA_SEMI_TRANSP;
1414             }
1415             p++;
1416         }
1417         p += src_wrap;
1418     }
1419     return ret;
1420 }
1421
1422 int img_get_alpha_info(const AVPicture *src,
1423                        enum PixelFormat pix_fmt, int width, int height)
1424 {
1425     const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
1426     int ret;
1427
1428     /* no alpha can be represented in format */
1429     if (!pf->is_alpha)
1430         return 0;
1431     switch(pix_fmt) {
1432     case PIX_FMT_PAL8:
1433         ret = get_alpha_info_pal8(src, width, height);
1434         break;
1435     default:
1436         /* we do not know, so everything is indicated */
1437         ret = FF_ALPHA_TRANSP | FF_ALPHA_SEMI_TRANSP;
1438         break;
1439     }
1440     return ret;
1441 }
1442
1443 #if HAVE_MMX
1444 #define DEINT_INPLACE_LINE_LUM \
1445                     movd_m2r(lum_m4[0],mm0);\
1446                     movd_m2r(lum_m3[0],mm1);\
1447                     movd_m2r(lum_m2[0],mm2);\
1448                     movd_m2r(lum_m1[0],mm3);\
1449                     movd_m2r(lum[0],mm4);\
1450                     punpcklbw_r2r(mm7,mm0);\
1451                     movd_r2m(mm2,lum_m4[0]);\
1452                     punpcklbw_r2r(mm7,mm1);\
1453                     punpcklbw_r2r(mm7,mm2);\
1454                     punpcklbw_r2r(mm7,mm3);\
1455                     punpcklbw_r2r(mm7,mm4);\
1456                     paddw_r2r(mm3,mm1);\
1457                     psllw_i2r(1,mm2);\
1458                     paddw_r2r(mm4,mm0);\
1459                     psllw_i2r(2,mm1);\
1460                     paddw_r2r(mm6,mm2);\
1461                     paddw_r2r(mm2,mm1);\
1462                     psubusw_r2r(mm0,mm1);\
1463                     psrlw_i2r(3,mm1);\
1464                     packuswb_r2r(mm7,mm1);\
1465                     movd_r2m(mm1,lum_m2[0]);
1466
1467 #define DEINT_LINE_LUM \
1468                     movd_m2r(lum_m4[0],mm0);\
1469                     movd_m2r(lum_m3[0],mm1);\
1470                     movd_m2r(lum_m2[0],mm2);\
1471                     movd_m2r(lum_m1[0],mm3);\
1472                     movd_m2r(lum[0],mm4);\
1473                     punpcklbw_r2r(mm7,mm0);\
1474                     punpcklbw_r2r(mm7,mm1);\
1475                     punpcklbw_r2r(mm7,mm2);\
1476                     punpcklbw_r2r(mm7,mm3);\
1477                     punpcklbw_r2r(mm7,mm4);\
1478                     paddw_r2r(mm3,mm1);\
1479                     psllw_i2r(1,mm2);\
1480                     paddw_r2r(mm4,mm0);\
1481                     psllw_i2r(2,mm1);\
1482                     paddw_r2r(mm6,mm2);\
1483                     paddw_r2r(mm2,mm1);\
1484                     psubusw_r2r(mm0,mm1);\
1485                     psrlw_i2r(3,mm1);\
1486                     packuswb_r2r(mm7,mm1);\
1487                     movd_r2m(mm1,dst[0]);
1488 #endif
1489
1490 /* filter parameters: [-1 4 2 4 -1] // 8 */
1491 static void deinterlace_line(uint8_t *dst,
1492                              const uint8_t *lum_m4, const uint8_t *lum_m3,
1493                              const uint8_t *lum_m2, const uint8_t *lum_m1,
1494                              const uint8_t *lum,
1495                              int size)
1496 {
1497 #if !HAVE_MMX
1498     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
1499     int sum;
1500
1501     for(;size > 0;size--) {
1502         sum = -lum_m4[0];
1503         sum += lum_m3[0] << 2;
1504         sum += lum_m2[0] << 1;
1505         sum += lum_m1[0] << 2;
1506         sum += -lum[0];
1507         dst[0] = cm[(sum + 4) >> 3];
1508         lum_m4++;
1509         lum_m3++;
1510         lum_m2++;
1511         lum_m1++;
1512         lum++;
1513         dst++;
1514     }
1515 #else
1516
1517     {
1518         pxor_r2r(mm7,mm7);
1519         movq_m2r(ff_pw_4,mm6);
1520     }
1521     for (;size > 3; size-=4) {
1522         DEINT_LINE_LUM
1523         lum_m4+=4;
1524         lum_m3+=4;
1525         lum_m2+=4;
1526         lum_m1+=4;
1527         lum+=4;
1528         dst+=4;
1529     }
1530 #endif
1531 }
1532 static void deinterlace_line_inplace(uint8_t *lum_m4, uint8_t *lum_m3, uint8_t *lum_m2, uint8_t *lum_m1, uint8_t *lum,
1533                              int size)
1534 {
1535 #if !HAVE_MMX
1536     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
1537     int sum;
1538
1539     for(;size > 0;size--) {
1540         sum = -lum_m4[0];
1541         sum += lum_m3[0] << 2;
1542         sum += lum_m2[0] << 1;
1543         lum_m4[0]=lum_m2[0];
1544         sum += lum_m1[0] << 2;
1545         sum += -lum[0];
1546         lum_m2[0] = cm[(sum + 4) >> 3];
1547         lum_m4++;
1548         lum_m3++;
1549         lum_m2++;
1550         lum_m1++;
1551         lum++;
1552     }
1553 #else
1554
1555     {
1556         pxor_r2r(mm7,mm7);
1557         movq_m2r(ff_pw_4,mm6);
1558     }
1559     for (;size > 3; size-=4) {
1560         DEINT_INPLACE_LINE_LUM
1561         lum_m4+=4;
1562         lum_m3+=4;
1563         lum_m2+=4;
1564         lum_m1+=4;
1565         lum+=4;
1566     }
1567 #endif
1568 }
1569
1570 /* deinterlacing : 2 temporal taps, 3 spatial taps linear filter. The
1571    top field is copied as is, but the bottom field is deinterlaced
1572    against the top field. */
1573 static void deinterlace_bottom_field(uint8_t *dst, int dst_wrap,
1574                                     const uint8_t *src1, int src_wrap,
1575                                     int width, int height)
1576 {
1577     const uint8_t *src_m2, *src_m1, *src_0, *src_p1, *src_p2;
1578     int y;
1579
1580     src_m2 = src1;
1581     src_m1 = src1;
1582     src_0=&src_m1[src_wrap];
1583     src_p1=&src_0[src_wrap];
1584     src_p2=&src_p1[src_wrap];
1585     for(y=0;y<(height-2);y+=2) {
1586         memcpy(dst,src_m1,width);
1587         dst += dst_wrap;
1588         deinterlace_line(dst,src_m2,src_m1,src_0,src_p1,src_p2,width);
1589         src_m2 = src_0;
1590         src_m1 = src_p1;
1591         src_0 = src_p2;
1592         src_p1 += 2*src_wrap;
1593         src_p2 += 2*src_wrap;
1594         dst += dst_wrap;
1595     }
1596     memcpy(dst,src_m1,width);
1597     dst += dst_wrap;
1598     /* do last line */
1599     deinterlace_line(dst,src_m2,src_m1,src_0,src_0,src_0,width);
1600 }
1601
1602 static void deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
1603                                              int width, int height)
1604 {
1605     uint8_t *src_m1, *src_0, *src_p1, *src_p2;
1606     int y;
1607     uint8_t *buf;
1608     buf = (uint8_t*)av_malloc(width);
1609
1610     src_m1 = src1;
1611     memcpy(buf,src_m1,width);
1612     src_0=&src_m1[src_wrap];
1613     src_p1=&src_0[src_wrap];
1614     src_p2=&src_p1[src_wrap];
1615     for(y=0;y<(height-2);y+=2) {
1616         deinterlace_line_inplace(buf,src_m1,src_0,src_p1,src_p2,width);
1617         src_m1 = src_p1;
1618         src_0 = src_p2;
1619         src_p1 += 2*src_wrap;
1620         src_p2 += 2*src_wrap;
1621     }
1622     /* do last line */
1623     deinterlace_line_inplace(buf,src_m1,src_0,src_0,src_0,width);
1624     av_free(buf);
1625 }
1626
1627 int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
1628                           enum PixelFormat pix_fmt, int width, int height)
1629 {
1630     int i;
1631
1632     if (pix_fmt != PIX_FMT_YUV420P &&
1633         pix_fmt != PIX_FMT_YUV422P &&
1634         pix_fmt != PIX_FMT_YUV444P &&
1635         pix_fmt != PIX_FMT_YUV411P &&
1636         pix_fmt != PIX_FMT_GRAY8)
1637         return -1;
1638     if ((width & 3) != 0 || (height & 3) != 0)
1639         return -1;
1640
1641     for(i=0;i<3;i++) {
1642         if (i == 1) {
1643             switch(pix_fmt) {
1644             case PIX_FMT_YUV420P:
1645                 width >>= 1;
1646                 height >>= 1;
1647                 break;
1648             case PIX_FMT_YUV422P:
1649                 width >>= 1;
1650                 break;
1651             case PIX_FMT_YUV411P:
1652                 width >>= 2;
1653                 break;
1654             default:
1655                 break;
1656             }
1657             if (pix_fmt == PIX_FMT_GRAY8) {
1658                 break;
1659             }
1660         }
1661         if (src == dst) {
1662             deinterlace_bottom_field_inplace(dst->data[i], dst->linesize[i],
1663                                  width, height);
1664         } else {
1665             deinterlace_bottom_field(dst->data[i],dst->linesize[i],
1666                                         src->data[i], src->linesize[i],
1667                                         width, height);
1668         }
1669     }
1670     emms_c();
1671     return 0;
1672 }
1673