]> git.sesse.net Git - ffmpeg/blob - libavcodec/imgconvert.c
Merge commit '7cc3c4e1d4179aeabcd891090e31ee5e5bfd9692'
[ffmpeg] / 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
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 "internal.h"
36 #include "libavutil/colorspace.h"
37 #include "libavutil/common.h"
38 #include "libavutil/pixdesc.h"
39 #include "libavutil/imgutils.h"
40
41 #if HAVE_MMX_EXTERNAL
42 #include "x86/dsputil_mmx.h"
43 #endif
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 #if HAVE_MMX_EXTERNAL
51 #define deinterlace_line_inplace ff_deinterlace_line_inplace_mmx
52 #define deinterlace_line         ff_deinterlace_line_mmx
53 #else
54 #define deinterlace_line_inplace deinterlace_line_inplace_c
55 #define deinterlace_line         deinterlace_line_c
56 #endif
57
58 #define pixdesc_has_alpha(pixdesc) \
59     ((pixdesc)->nb_components == 2 || (pixdesc)->nb_components == 4 || (pixdesc)->flags & PIX_FMT_PAL)
60
61 typedef struct PixFmtInfo {
62     uint8_t color_type;      /**< color type (see FF_COLOR_xxx constants) */
63     uint8_t padded_size;     /**< padded size in bits if different from the non-padded size */
64 } PixFmtInfo;
65
66 /* this table gives more information about formats */
67 static const PixFmtInfo pix_fmt_info[AV_PIX_FMT_NB] = {
68     /* YUV formats */
69     [AV_PIX_FMT_YUV420P] = {
70         .color_type = FF_COLOR_YUV,
71     },
72     [AV_PIX_FMT_YUV422P] = {
73         .color_type = FF_COLOR_YUV,
74     },
75     [AV_PIX_FMT_YUV444P] = {
76         .color_type = FF_COLOR_YUV,
77     },
78     [AV_PIX_FMT_YUYV422] = {
79         .color_type = FF_COLOR_YUV,
80     },
81     [AV_PIX_FMT_UYVY422] = {
82         .color_type = FF_COLOR_YUV,
83     },
84     [AV_PIX_FMT_YUV410P] = {
85         .color_type = FF_COLOR_YUV,
86     },
87     [AV_PIX_FMT_YUV411P] = {
88         .color_type = FF_COLOR_YUV,
89     },
90     [AV_PIX_FMT_YUV440P] = {
91         .color_type = FF_COLOR_YUV,
92     },
93     [AV_PIX_FMT_YUV420P9LE] = {
94         .color_type = FF_COLOR_YUV,
95     },
96     [AV_PIX_FMT_YUV422P9LE] = {
97         .color_type = FF_COLOR_YUV,
98     },
99     [AV_PIX_FMT_YUV444P9LE] = {
100         .color_type = FF_COLOR_YUV,
101     },
102     [AV_PIX_FMT_YUV420P9BE] = {
103         .color_type = FF_COLOR_YUV,
104     },
105     [AV_PIX_FMT_YUV422P9BE] = {
106         .color_type = FF_COLOR_YUV,
107     },
108     [AV_PIX_FMT_YUV444P9BE] = {
109         .color_type = FF_COLOR_YUV,
110     },
111     [AV_PIX_FMT_YUV420P10LE] = {
112         .color_type = FF_COLOR_YUV,
113     },
114     [AV_PIX_FMT_YUV422P10LE] = {
115         .color_type = FF_COLOR_YUV,
116     },
117     [AV_PIX_FMT_YUV444P10LE] = {
118         .color_type = FF_COLOR_YUV,
119     },
120     [AV_PIX_FMT_YUV420P10BE] = {
121         .color_type = FF_COLOR_YUV,
122     },
123     [AV_PIX_FMT_YUV422P10BE] = {
124         .color_type = FF_COLOR_YUV,
125     },
126     [AV_PIX_FMT_YUV444P10BE] = {
127         .color_type = FF_COLOR_YUV,
128     },
129     [AV_PIX_FMT_YUV420P12LE] = {
130         .color_type = FF_COLOR_YUV,
131     },
132     [AV_PIX_FMT_YUV422P12LE] = {
133         .color_type = FF_COLOR_YUV,
134     },
135     [AV_PIX_FMT_YUV444P12LE] = {
136         .color_type = FF_COLOR_YUV,
137     },
138     [AV_PIX_FMT_YUV420P12BE] = {
139         .color_type = FF_COLOR_YUV,
140     },
141     [AV_PIX_FMT_YUV422P12BE] = {
142         .color_type = FF_COLOR_YUV,
143     },
144     [AV_PIX_FMT_YUV444P12BE] = {
145         .color_type = FF_COLOR_YUV,
146     },
147     [AV_PIX_FMT_YUV420P14LE] = {
148         .color_type = FF_COLOR_YUV,
149     },
150     [AV_PIX_FMT_YUV422P14LE] = {
151         .color_type = FF_COLOR_YUV,
152     },
153     [AV_PIX_FMT_YUV444P14LE] = {
154         .color_type = FF_COLOR_YUV,
155     },
156     [AV_PIX_FMT_YUV420P14BE] = {
157         .color_type = FF_COLOR_YUV,
158     },
159     [AV_PIX_FMT_YUV422P14BE] = {
160         .color_type = FF_COLOR_YUV,
161     },
162     [AV_PIX_FMT_YUV444P14BE] = {
163         .color_type = FF_COLOR_YUV,
164     },
165     [AV_PIX_FMT_YUV420P16LE] = {
166         .color_type = FF_COLOR_YUV,
167     },
168     [AV_PIX_FMT_YUV422P16LE] = {
169         .color_type = FF_COLOR_YUV,
170     },
171     [AV_PIX_FMT_YUV444P16LE] = {
172         .color_type = FF_COLOR_YUV,
173     },
174     [AV_PIX_FMT_YUV420P16BE] = {
175         .color_type = FF_COLOR_YUV,
176     },
177     [AV_PIX_FMT_YUV422P16BE] = {
178         .color_type = FF_COLOR_YUV,
179     },
180     [AV_PIX_FMT_YUV444P16BE] = {
181         .color_type = FF_COLOR_YUV,
182     },
183
184     /* YUV formats with alpha plane */
185     [AV_PIX_FMT_YUVA420P] = {
186         .color_type = FF_COLOR_YUV,
187     },
188
189     [AV_PIX_FMT_YUVA422P] = {
190         .color_type = FF_COLOR_YUV,
191     },
192
193     [AV_PIX_FMT_YUVA444P] = {
194         .color_type = FF_COLOR_YUV,
195     },
196
197     /* JPEG YUV */
198     [AV_PIX_FMT_YUVJ420P] = {
199         .color_type = FF_COLOR_YUV_JPEG,
200     },
201     [AV_PIX_FMT_YUVJ422P] = {
202         .color_type = FF_COLOR_YUV_JPEG,
203     },
204     [AV_PIX_FMT_YUVJ444P] = {
205         .color_type = FF_COLOR_YUV_JPEG,
206     },
207     [AV_PIX_FMT_YUVJ440P] = {
208         .color_type = FF_COLOR_YUV_JPEG,
209     },
210
211     /* RGB formats */
212     [AV_PIX_FMT_RGB24] = {
213         .color_type = FF_COLOR_RGB,
214     },
215     [AV_PIX_FMT_BGR24] = {
216         .color_type = FF_COLOR_RGB,
217     },
218     [AV_PIX_FMT_ARGB] = {
219         .color_type = FF_COLOR_RGB,
220     },
221     [AV_PIX_FMT_RGB48BE] = {
222         .color_type = FF_COLOR_RGB,
223     },
224     [AV_PIX_FMT_RGB48LE] = {
225         .color_type = FF_COLOR_RGB,
226     },
227     [AV_PIX_FMT_RGBA64BE] = {
228         .color_type = FF_COLOR_RGB,
229     },
230     [AV_PIX_FMT_RGBA64LE] = {
231         .color_type = FF_COLOR_RGB,
232     },
233     [AV_PIX_FMT_RGB565BE] = {
234         .color_type = FF_COLOR_RGB,
235     },
236     [AV_PIX_FMT_RGB565LE] = {
237         .color_type = FF_COLOR_RGB,
238     },
239     [AV_PIX_FMT_RGB555BE] = {
240         .color_type = FF_COLOR_RGB,
241         .padded_size = 16,
242     },
243     [AV_PIX_FMT_RGB555LE] = {
244         .color_type = FF_COLOR_RGB,
245         .padded_size = 16,
246     },
247     [AV_PIX_FMT_RGB444BE] = {
248         .color_type = FF_COLOR_RGB,
249         .padded_size = 16,
250     },
251     [AV_PIX_FMT_RGB444LE] = {
252         .color_type = FF_COLOR_RGB,
253         .padded_size = 16,
254     },
255
256     /* gray / mono formats */
257     [AV_PIX_FMT_GRAY16BE] = {
258         .color_type = FF_COLOR_GRAY,
259     },
260     [AV_PIX_FMT_GRAY16LE] = {
261         .color_type = FF_COLOR_GRAY,
262     },
263     [AV_PIX_FMT_GRAY8] = {
264         .color_type = FF_COLOR_GRAY,
265     },
266     [AV_PIX_FMT_GRAY8A] = {
267         .color_type = FF_COLOR_GRAY,
268     },
269     [AV_PIX_FMT_MONOWHITE] = {
270         .color_type = FF_COLOR_GRAY,
271     },
272     [AV_PIX_FMT_MONOBLACK] = {
273         .color_type = FF_COLOR_GRAY,
274     },
275
276     /* paletted formats */
277     [AV_PIX_FMT_PAL8] = {
278         .color_type = FF_COLOR_RGB,
279     },
280     [AV_PIX_FMT_UYYVYY411] = {
281         .color_type = FF_COLOR_YUV,
282     },
283     [AV_PIX_FMT_ABGR] = {
284         .color_type = FF_COLOR_RGB,
285     },
286     [AV_PIX_FMT_BGR48BE] = {
287         .color_type = FF_COLOR_RGB,
288     },
289     [AV_PIX_FMT_BGR48LE] = {
290         .color_type = FF_COLOR_RGB,
291     },
292     [AV_PIX_FMT_BGRA64BE] = {
293         .color_type = FF_COLOR_RGB,
294     },
295     [AV_PIX_FMT_BGRA64LE] = {
296         .color_type = FF_COLOR_RGB,
297     },
298     [AV_PIX_FMT_BGR565BE] = {
299         .color_type = FF_COLOR_RGB,
300         .padded_size = 16,
301     },
302     [AV_PIX_FMT_BGR565LE] = {
303         .color_type = FF_COLOR_RGB,
304         .padded_size = 16,
305     },
306     [AV_PIX_FMT_BGR555BE] = {
307         .color_type = FF_COLOR_RGB,
308         .padded_size = 16,
309     },
310     [AV_PIX_FMT_BGR555LE] = {
311         .color_type = FF_COLOR_RGB,
312         .padded_size = 16,
313     },
314     [AV_PIX_FMT_BGR444BE] = {
315         .color_type = FF_COLOR_RGB,
316         .padded_size = 16,
317     },
318     [AV_PIX_FMT_BGR444LE] = {
319         .color_type = FF_COLOR_RGB,
320         .padded_size = 16,
321     },
322     [AV_PIX_FMT_RGB8] = {
323         .color_type = FF_COLOR_RGB,
324     },
325     [AV_PIX_FMT_RGB4] = {
326         .color_type = FF_COLOR_RGB,
327     },
328     [AV_PIX_FMT_RGB4_BYTE] = {
329         .color_type = FF_COLOR_RGB,
330         .padded_size = 8,
331     },
332     [AV_PIX_FMT_BGR8] = {
333         .color_type = FF_COLOR_RGB,
334     },
335     [AV_PIX_FMT_BGR4] = {
336         .color_type = FF_COLOR_RGB,
337     },
338     [AV_PIX_FMT_BGR4_BYTE] = {
339         .color_type = FF_COLOR_RGB,
340         .padded_size = 8,
341     },
342     [AV_PIX_FMT_NV12] = {
343         .color_type = FF_COLOR_YUV,
344     },
345     [AV_PIX_FMT_NV21] = {
346         .color_type = FF_COLOR_YUV,
347     },
348
349     [AV_PIX_FMT_BGRA] = {
350         .color_type = FF_COLOR_RGB,
351     },
352     [AV_PIX_FMT_RGBA] = {
353         .color_type = FF_COLOR_RGB,
354     },
355
356     [AV_PIX_FMT_GBRP] = {
357         .color_type = FF_COLOR_RGB,
358     },
359     [AV_PIX_FMT_GBRP9BE] = {
360         .color_type = FF_COLOR_RGB,
361     },
362     [AV_PIX_FMT_GBRP9LE] = {
363         .color_type = FF_COLOR_RGB,
364     },
365     [AV_PIX_FMT_GBRP10BE] = {
366         .color_type = FF_COLOR_RGB,
367     },
368     [AV_PIX_FMT_GBRP10LE] = {
369         .color_type = FF_COLOR_RGB,
370     },
371     [AV_PIX_FMT_GBRP12BE] = {
372         .color_type = FF_COLOR_RGB,
373     },
374     [AV_PIX_FMT_GBRP12LE] = {
375         .color_type = FF_COLOR_RGB,
376     },
377     [AV_PIX_FMT_GBRP14BE] = {
378         .color_type = FF_COLOR_RGB,
379     },
380     [AV_PIX_FMT_GBRP14LE] = {
381         .color_type = FF_COLOR_RGB,
382     },
383     [AV_PIX_FMT_GBRP16BE] = {
384         .color_type = FF_COLOR_RGB,
385     },
386     [AV_PIX_FMT_GBRP16LE] = {
387         .color_type = FF_COLOR_RGB,
388     },
389 };
390
391 void avcodec_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
392 {
393     *h_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_w;
394     *v_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h;
395 }
396
397 int ff_is_hwaccel_pix_fmt(enum AVPixelFormat pix_fmt)
398 {
399     return av_pix_fmt_descriptors[pix_fmt].flags & PIX_FMT_HWACCEL;
400 }
401
402 int avpicture_fill(AVPicture *picture, uint8_t *ptr,
403                    enum AVPixelFormat pix_fmt, int width, int height)
404 {
405     return av_image_fill_arrays(picture->data, picture->linesize,
406                                 ptr, pix_fmt, width, height, 1);
407 }
408
409 int avpicture_layout(const AVPicture* src, enum AVPixelFormat pix_fmt, int width, int height,
410                      unsigned char *dest, int dest_size)
411 {
412     return av_image_copy_to_buffer(dest, dest_size,
413                                    (const uint8_t * const*)src->data, src->linesize,
414                                    pix_fmt, width, height, 1);
415 }
416
417 int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height)
418 {
419     return av_image_get_buffer_size(pix_fmt, width, height, 1);
420 }
421
422 static int get_pix_fmt_depth(int *min, int *max, enum AVPixelFormat pix_fmt)
423 {
424     const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
425     int i;
426
427     if (!desc->nb_components) {
428         *min = *max = 0;
429         return AVERROR(EINVAL);
430     }
431
432     *min = INT_MAX, *max = -INT_MAX;
433     for (i = 0; i < desc->nb_components; i++) {
434         *min = FFMIN(desc->comp[i].depth_minus1+1, *min);
435         *max = FFMAX(desc->comp[i].depth_minus1+1, *max);
436     }
437     return 0;
438 }
439
440 int avcodec_get_pix_fmt_loss(enum AVPixelFormat dst_pix_fmt, enum AVPixelFormat src_pix_fmt,
441                              int has_alpha)
442 {
443     const PixFmtInfo *pf, *ps;
444     const AVPixFmtDescriptor *src_desc;
445     const AVPixFmtDescriptor *dst_desc;
446     int src_min_depth, src_max_depth, dst_min_depth, dst_max_depth;
447     int ret, loss;
448
449     if (dst_pix_fmt >= AV_PIX_FMT_NB || dst_pix_fmt <= AV_PIX_FMT_NONE)
450         return ~0;
451
452     src_desc = &av_pix_fmt_descriptors[src_pix_fmt];
453     dst_desc = &av_pix_fmt_descriptors[dst_pix_fmt];
454     ps = &pix_fmt_info[src_pix_fmt];
455
456     /* compute loss */
457     loss = 0;
458
459     if ((ret = get_pix_fmt_depth(&src_min_depth, &src_max_depth, src_pix_fmt)) < 0)
460         return ret;
461     if ((ret = get_pix_fmt_depth(&dst_min_depth, &dst_max_depth, dst_pix_fmt)) < 0)
462         return ret;
463     if (dst_min_depth < src_min_depth ||
464         dst_max_depth < src_max_depth)
465         loss |= FF_LOSS_DEPTH;
466     if (dst_desc->log2_chroma_w > src_desc->log2_chroma_w ||
467         dst_desc->log2_chroma_h > src_desc->log2_chroma_h)
468         loss |= FF_LOSS_RESOLUTION;
469
470     pf = &pix_fmt_info[dst_pix_fmt];
471     switch(pf->color_type) {
472     case FF_COLOR_RGB:
473         if (ps->color_type != FF_COLOR_RGB &&
474             ps->color_type != FF_COLOR_GRAY)
475             loss |= FF_LOSS_COLORSPACE;
476         break;
477     case FF_COLOR_GRAY:
478         if (ps->color_type != FF_COLOR_GRAY)
479             loss |= FF_LOSS_COLORSPACE;
480         break;
481     case FF_COLOR_YUV:
482         if (ps->color_type != FF_COLOR_YUV)
483             loss |= FF_LOSS_COLORSPACE;
484         break;
485     case FF_COLOR_YUV_JPEG:
486         if (ps->color_type != FF_COLOR_YUV_JPEG &&
487             ps->color_type != FF_COLOR_YUV &&
488             ps->color_type != FF_COLOR_GRAY)
489             loss |= FF_LOSS_COLORSPACE;
490         break;
491     default:
492         /* fail safe test */
493         if (ps->color_type != pf->color_type)
494             loss |= FF_LOSS_COLORSPACE;
495         break;
496     }
497     if (pf->color_type == FF_COLOR_GRAY &&
498         ps->color_type != FF_COLOR_GRAY)
499         loss |= FF_LOSS_CHROMA;
500     if (!pixdesc_has_alpha(dst_desc) && (pixdesc_has_alpha(src_desc) && has_alpha))
501         loss |= FF_LOSS_ALPHA;
502     if (dst_pix_fmt == AV_PIX_FMT_PAL8 &&
503         (src_pix_fmt != AV_PIX_FMT_PAL8 && (ps->color_type != FF_COLOR_GRAY || (pixdesc_has_alpha(src_desc) && has_alpha))))
504         loss |= FF_LOSS_COLORQUANT;
505
506     return loss;
507 }
508
509 static int avg_bits_per_pixel(enum AVPixelFormat pix_fmt)
510 {
511     const PixFmtInfo *info = &pix_fmt_info[pix_fmt];
512     const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
513
514     return info->padded_size ?
515         info->padded_size : av_get_bits_per_pixel(desc);
516 }
517
518 #if FF_API_FIND_BEST_PIX_FMT
519 enum AVPixelFormat avcodec_find_best_pix_fmt(int64_t pix_fmt_mask, enum AVPixelFormat src_pix_fmt,
520                                             int has_alpha, int *loss_ptr)
521 {
522     enum AVPixelFormat dst_pix_fmt;
523     int i;
524
525     if (loss_ptr) /* all losses count (for backward compatibility) */
526         *loss_ptr = 0;
527
528     dst_pix_fmt = AV_PIX_FMT_NONE; /* so first iteration doesn't have to be treated special */
529     for(i = 0; i< FFMIN(AV_PIX_FMT_NB, 64); i++){
530         if (pix_fmt_mask & (1ULL << i))
531             dst_pix_fmt = avcodec_find_best_pix_fmt_of_2(dst_pix_fmt, i, src_pix_fmt, has_alpha, loss_ptr);
532     }
533     return dst_pix_fmt;
534 }
535 #endif /* FF_API_FIND_BEST_PIX_FMT */
536
537 enum AVPixelFormat avcodec_find_best_pix_fmt_of_2(enum AVPixelFormat dst_pix_fmt1, enum AVPixelFormat dst_pix_fmt2,
538                                             enum AVPixelFormat src_pix_fmt, int has_alpha, int *loss_ptr)
539 {
540     enum AVPixelFormat dst_pix_fmt;
541     int loss1, loss2, loss_order1, loss_order2, i, loss_mask;
542     static const int loss_mask_order[] = {
543         ~0, /* no loss first */
544         ~FF_LOSS_ALPHA,
545         ~FF_LOSS_RESOLUTION,
546         ~FF_LOSS_COLORSPACE,
547         ~(FF_LOSS_COLORSPACE | FF_LOSS_RESOLUTION),
548         ~FF_LOSS_COLORQUANT,
549         ~FF_LOSS_DEPTH,
550         ~(FF_LOSS_DEPTH|FF_LOSS_COLORSPACE),
551         ~(FF_LOSS_RESOLUTION | FF_LOSS_DEPTH | FF_LOSS_COLORSPACE | FF_LOSS_ALPHA |
552           FF_LOSS_COLORQUANT | FF_LOSS_CHROMA),
553         0x80000, //non zero entry that combines all loss variants including future additions
554         0,
555     };
556
557     loss_mask= loss_ptr?~*loss_ptr:~0; /* use loss mask if provided */
558     dst_pix_fmt = AV_PIX_FMT_NONE;
559     loss1 = avcodec_get_pix_fmt_loss(dst_pix_fmt1, src_pix_fmt, has_alpha) & loss_mask;
560     loss2 = avcodec_get_pix_fmt_loss(dst_pix_fmt2, src_pix_fmt, has_alpha) & loss_mask;
561
562     /* try with successive loss */
563     for(i = 0;loss_mask_order[i] != 0 && dst_pix_fmt == AV_PIX_FMT_NONE;i++) {
564         loss_order1 = loss1 & loss_mask_order[i];
565         loss_order2 = loss2 & loss_mask_order[i];
566
567         if (loss_order1 == 0 && loss_order2 == 0){ /* use format with smallest depth */
568             dst_pix_fmt = avg_bits_per_pixel(dst_pix_fmt2) < avg_bits_per_pixel(dst_pix_fmt1) ? dst_pix_fmt2 : dst_pix_fmt1;
569         } else if (loss_order1 == 0 || loss_order2 == 0) { /* use format with no loss */
570             dst_pix_fmt = loss_order2 ? dst_pix_fmt1 : dst_pix_fmt2;
571         }
572     }
573
574     if (loss_ptr)
575         *loss_ptr = avcodec_get_pix_fmt_loss(dst_pix_fmt, src_pix_fmt, has_alpha);
576     return dst_pix_fmt;
577 }
578
579 #if AV_HAVE_INCOMPATIBLE_FORK_ABI
580 enum AVPixelFormat avcodec_find_best_pix_fmt2(enum AVPixelFormat *pix_fmt_list,
581                                             enum AVPixelFormat src_pix_fmt,
582                                             int has_alpha, int *loss_ptr){
583     return avcodec_find_best_pix_fmt_of_list(pix_fmt_list, src_pix_fmt, has_alpha, loss_ptr);
584 }
585 #else
586 enum AVPixelFormat avcodec_find_best_pix_fmt2(enum AVPixelFormat dst_pix_fmt1, enum AVPixelFormat dst_pix_fmt2,
587                                             enum AVPixelFormat src_pix_fmt, int has_alpha, int *loss_ptr)
588 {
589     return avcodec_find_best_pix_fmt_of_2(dst_pix_fmt1, dst_pix_fmt2, src_pix_fmt, has_alpha, loss_ptr);
590 }
591 #endif
592
593 enum AVPixelFormat avcodec_find_best_pix_fmt_of_list(enum AVPixelFormat *pix_fmt_list,
594                                             enum AVPixelFormat src_pix_fmt,
595                                             int has_alpha, int *loss_ptr){
596     int i;
597
598     enum AVPixelFormat best = AV_PIX_FMT_NONE;
599
600     for(i=0; pix_fmt_list[i] != AV_PIX_FMT_NONE; i++)
601         best = avcodec_find_best_pix_fmt_of_2(best, pix_fmt_list[i], src_pix_fmt, has_alpha, loss_ptr);
602
603     return best;
604 }
605
606 void av_picture_copy(AVPicture *dst, const AVPicture *src,
607                      enum AVPixelFormat pix_fmt, int width, int height)
608 {
609     av_image_copy(dst->data, dst->linesize, (const uint8_t **)src->data,
610                   src->linesize, pix_fmt, width, height);
611 }
612
613 /* 2x2 -> 1x1 */
614 void ff_shrink22(uint8_t *dst, int dst_wrap,
615                      const uint8_t *src, int src_wrap,
616                      int width, int height)
617 {
618     int w;
619     const uint8_t *s1, *s2;
620     uint8_t *d;
621
622     for(;height > 0; height--) {
623         s1 = src;
624         s2 = s1 + src_wrap;
625         d = dst;
626         for(w = width;w >= 4; w-=4) {
627             d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
628             d[1] = (s1[2] + s1[3] + s2[2] + s2[3] + 2) >> 2;
629             d[2] = (s1[4] + s1[5] + s2[4] + s2[5] + 2) >> 2;
630             d[3] = (s1[6] + s1[7] + s2[6] + s2[7] + 2) >> 2;
631             s1 += 8;
632             s2 += 8;
633             d += 4;
634         }
635         for(;w > 0; w--) {
636             d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
637             s1 += 2;
638             s2 += 2;
639             d++;
640         }
641         src += 2 * src_wrap;
642         dst += dst_wrap;
643     }
644 }
645
646 /* 4x4 -> 1x1 */
647 void ff_shrink44(uint8_t *dst, int dst_wrap,
648                      const uint8_t *src, int src_wrap,
649                      int width, int height)
650 {
651     int w;
652     const uint8_t *s1, *s2, *s3, *s4;
653     uint8_t *d;
654
655     for(;height > 0; height--) {
656         s1 = src;
657         s2 = s1 + src_wrap;
658         s3 = s2 + src_wrap;
659         s4 = s3 + src_wrap;
660         d = dst;
661         for(w = width;w > 0; w--) {
662             d[0] = (s1[0] + s1[1] + s1[2] + s1[3] +
663                     s2[0] + s2[1] + s2[2] + s2[3] +
664                     s3[0] + s3[1] + s3[2] + s3[3] +
665                     s4[0] + s4[1] + s4[2] + s4[3] + 8) >> 4;
666             s1 += 4;
667             s2 += 4;
668             s3 += 4;
669             s4 += 4;
670             d++;
671         }
672         src += 4 * src_wrap;
673         dst += dst_wrap;
674     }
675 }
676
677 /* 8x8 -> 1x1 */
678 void ff_shrink88(uint8_t *dst, int dst_wrap,
679                      const uint8_t *src, int src_wrap,
680                      int width, int height)
681 {
682     int w, i;
683
684     for(;height > 0; height--) {
685         for(w = width;w > 0; w--) {
686             int tmp=0;
687             for(i=0; i<8; i++){
688                 tmp += src[0] + src[1] + src[2] + src[3] + src[4] + src[5] + src[6] + src[7];
689                 src += src_wrap;
690             }
691             *(dst++) = (tmp + 32)>>6;
692             src += 8 - 8*src_wrap;
693         }
694         src += 8*src_wrap - 8*width;
695         dst += dst_wrap - width;
696     }
697 }
698
699
700 int avpicture_alloc(AVPicture *picture,
701                     enum AVPixelFormat pix_fmt, int width, int height)
702 {
703     int ret;
704
705     if ((ret = av_image_alloc(picture->data, picture->linesize, width, height, pix_fmt, 1)) < 0) {
706         memset(picture, 0, sizeof(AVPicture));
707         return ret;
708     }
709
710     return 0;
711 }
712
713 void avpicture_free(AVPicture *picture)
714 {
715     av_free(picture->data[0]);
716 }
717
718 /* return true if yuv planar */
719 static inline int is_yuv_planar(enum AVPixelFormat fmt)
720 {
721     const PixFmtInfo         *info = &pix_fmt_info[fmt];
722     const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[fmt];
723     int i;
724     int planes[4] = { 0 };
725
726     if (info->color_type != FF_COLOR_YUV &&
727         info->color_type != FF_COLOR_YUV_JPEG)
728         return 0;
729
730     /* set the used planes */
731     for (i = 0; i < desc->nb_components; i++)
732         planes[desc->comp[i].plane] = 1;
733
734     /* if there is an unused plane, the format is not planar */
735     for (i = 0; i < desc->nb_components; i++)
736         if (!planes[i])
737             return 0;
738     return 1;
739 }
740
741 int av_picture_crop(AVPicture *dst, const AVPicture *src,
742                     enum AVPixelFormat pix_fmt, int top_band, int left_band)
743 {
744     int y_shift;
745     int x_shift;
746
747     if (pix_fmt < 0 || pix_fmt >= AV_PIX_FMT_NB)
748         return -1;
749
750     y_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h;
751     x_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_w;
752
753     if (is_yuv_planar(pix_fmt)) {
754     dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
755     dst->data[1] = src->data[1] + ((top_band >> y_shift) * src->linesize[1]) + (left_band >> x_shift);
756     dst->data[2] = src->data[2] + ((top_band >> y_shift) * src->linesize[2]) + (left_band >> x_shift);
757     } else{
758         if(top_band % (1<<y_shift) || left_band % (1<<x_shift))
759             return -1;
760         if(left_band) //FIXME add support for this too
761             return -1;
762         dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
763     }
764
765     dst->linesize[0] = src->linesize[0];
766     dst->linesize[1] = src->linesize[1];
767     dst->linesize[2] = src->linesize[2];
768     return 0;
769 }
770
771 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width,
772                    enum AVPixelFormat pix_fmt, int padtop, int padbottom, int padleft, int padright,
773             int *color)
774 {
775     uint8_t *optr;
776     int y_shift;
777     int x_shift;
778     int yheight;
779     int i, y;
780
781     if (pix_fmt < 0 || pix_fmt >= AV_PIX_FMT_NB ||
782         !is_yuv_planar(pix_fmt)) return -1;
783
784     for (i = 0; i < 3; i++) {
785         x_shift = i ? av_pix_fmt_descriptors[pix_fmt].log2_chroma_w : 0;
786         y_shift = i ? av_pix_fmt_descriptors[pix_fmt].log2_chroma_h : 0;
787
788         if (padtop || padleft) {
789             memset(dst->data[i], color[i],
790                 dst->linesize[i] * (padtop >> y_shift) + (padleft >> x_shift));
791         }
792
793         if (padleft || padright) {
794             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
795                 (dst->linesize[i] - (padright >> x_shift));
796             yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
797             for (y = 0; y < yheight; y++) {
798                 memset(optr, color[i], (padleft + padright) >> x_shift);
799                 optr += dst->linesize[i];
800             }
801         }
802
803         if (src) { /* first line */
804             uint8_t *iptr = src->data[i];
805             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
806                     (padleft >> x_shift);
807             memcpy(optr, iptr, (width - padleft - padright) >> x_shift);
808             iptr += src->linesize[i];
809             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
810                 (dst->linesize[i] - (padright >> x_shift));
811             yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
812             for (y = 0; y < yheight; y++) {
813                 memset(optr, color[i], (padleft + padright) >> x_shift);
814                 memcpy(optr + ((padleft + padright) >> x_shift), iptr,
815                        (width - padleft - padright) >> x_shift);
816                 iptr += src->linesize[i];
817                 optr += dst->linesize[i];
818             }
819         }
820
821         if (padbottom || padright) {
822             optr = dst->data[i] + dst->linesize[i] *
823                 ((height - padbottom) >> y_shift) - (padright >> x_shift);
824             memset(optr, color[i],dst->linesize[i] *
825                 (padbottom >> y_shift) + (padright >> x_shift));
826         }
827     }
828     return 0;
829 }
830
831 #if !HAVE_MMX_EXTERNAL
832 /* filter parameters: [-1 4 2 4 -1] // 8 */
833 static void deinterlace_line_c(uint8_t *dst,
834                              const uint8_t *lum_m4, const uint8_t *lum_m3,
835                              const uint8_t *lum_m2, const uint8_t *lum_m1,
836                              const uint8_t *lum,
837                              int size)
838 {
839     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
840     int sum;
841
842     for(;size > 0;size--) {
843         sum = -lum_m4[0];
844         sum += lum_m3[0] << 2;
845         sum += lum_m2[0] << 1;
846         sum += lum_m1[0] << 2;
847         sum += -lum[0];
848         dst[0] = cm[(sum + 4) >> 3];
849         lum_m4++;
850         lum_m3++;
851         lum_m2++;
852         lum_m1++;
853         lum++;
854         dst++;
855     }
856 }
857
858 static void deinterlace_line_inplace_c(uint8_t *lum_m4, uint8_t *lum_m3,
859                                        uint8_t *lum_m2, uint8_t *lum_m1,
860                                        uint8_t *lum, int size)
861 {
862     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
863     int sum;
864
865     for(;size > 0;size--) {
866         sum = -lum_m4[0];
867         sum += lum_m3[0] << 2;
868         sum += lum_m2[0] << 1;
869         lum_m4[0]=lum_m2[0];
870         sum += lum_m1[0] << 2;
871         sum += -lum[0];
872         lum_m2[0] = cm[(sum + 4) >> 3];
873         lum_m4++;
874         lum_m3++;
875         lum_m2++;
876         lum_m1++;
877         lum++;
878     }
879 }
880 #endif /* !HAVE_MMX_EXTERNAL */
881
882 /* deinterlacing : 2 temporal taps, 3 spatial taps linear filter. The
883    top field is copied as is, but the bottom field is deinterlaced
884    against the top field. */
885 static void deinterlace_bottom_field(uint8_t *dst, int dst_wrap,
886                                     const uint8_t *src1, int src_wrap,
887                                     int width, int height)
888 {
889     const uint8_t *src_m2, *src_m1, *src_0, *src_p1, *src_p2;
890     int y;
891
892     src_m2 = src1;
893     src_m1 = src1;
894     src_0=&src_m1[src_wrap];
895     src_p1=&src_0[src_wrap];
896     src_p2=&src_p1[src_wrap];
897     for(y=0;y<(height-2);y+=2) {
898         memcpy(dst,src_m1,width);
899         dst += dst_wrap;
900         deinterlace_line(dst,src_m2,src_m1,src_0,src_p1,src_p2,width);
901         src_m2 = src_0;
902         src_m1 = src_p1;
903         src_0 = src_p2;
904         src_p1 += 2*src_wrap;
905         src_p2 += 2*src_wrap;
906         dst += dst_wrap;
907     }
908     memcpy(dst,src_m1,width);
909     dst += dst_wrap;
910     /* do last line */
911     deinterlace_line(dst,src_m2,src_m1,src_0,src_0,src_0,width);
912 }
913
914 static void deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
915                                              int width, int height)
916 {
917     uint8_t *src_m1, *src_0, *src_p1, *src_p2;
918     int y;
919     uint8_t *buf;
920     buf = av_malloc(width);
921
922     src_m1 = src1;
923     memcpy(buf,src_m1,width);
924     src_0=&src_m1[src_wrap];
925     src_p1=&src_0[src_wrap];
926     src_p2=&src_p1[src_wrap];
927     for(y=0;y<(height-2);y+=2) {
928         deinterlace_line_inplace(buf,src_m1,src_0,src_p1,src_p2,width);
929         src_m1 = src_p1;
930         src_0 = src_p2;
931         src_p1 += 2*src_wrap;
932         src_p2 += 2*src_wrap;
933     }
934     /* do last line */
935     deinterlace_line_inplace(buf,src_m1,src_0,src_0,src_0,width);
936     av_free(buf);
937 }
938
939 int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
940                           enum AVPixelFormat pix_fmt, int width, int height)
941 {
942     int i;
943
944     if (pix_fmt != AV_PIX_FMT_YUV420P &&
945         pix_fmt != AV_PIX_FMT_YUVJ420P &&
946         pix_fmt != AV_PIX_FMT_YUV422P &&
947         pix_fmt != AV_PIX_FMT_YUVJ422P &&
948         pix_fmt != AV_PIX_FMT_YUV444P &&
949         pix_fmt != AV_PIX_FMT_YUV411P &&
950         pix_fmt != AV_PIX_FMT_GRAY8)
951         return -1;
952     if ((width & 3) != 0 || (height & 3) != 0)
953         return -1;
954
955     for(i=0;i<3;i++) {
956         if (i == 1) {
957             switch(pix_fmt) {
958             case AV_PIX_FMT_YUVJ420P:
959             case AV_PIX_FMT_YUV420P:
960                 width >>= 1;
961                 height >>= 1;
962                 break;
963             case AV_PIX_FMT_YUV422P:
964             case AV_PIX_FMT_YUVJ422P:
965                 width >>= 1;
966                 break;
967             case AV_PIX_FMT_YUV411P:
968                 width >>= 2;
969                 break;
970             default:
971                 break;
972             }
973             if (pix_fmt == AV_PIX_FMT_GRAY8) {
974                 break;
975             }
976         }
977         if (src == dst) {
978             deinterlace_bottom_field_inplace(dst->data[i], dst->linesize[i],
979                                  width, height);
980         } else {
981             deinterlace_bottom_field(dst->data[i],dst->linesize[i],
982                                         src->data[i], src->linesize[i],
983                                         width, height);
984         }
985     }
986     emms_c();
987     return 0;
988 }