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