]> git.sesse.net Git - ffmpeg/blob - libavcodec/imgconvert.c
Merge remote-tracking branch 'qatar/master'
[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     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
394     *h_shift = desc->log2_chroma_w;
395     *v_shift = desc->log2_chroma_h;
396 }
397
398 int ff_is_hwaccel_pix_fmt(enum AVPixelFormat pix_fmt)
399 {
400     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
401     return desc->flags & PIX_FMT_HWACCEL;
402 }
403
404 int avpicture_fill(AVPicture *picture, uint8_t *ptr,
405                    enum AVPixelFormat pix_fmt, int width, int height)
406 {
407     return av_image_fill_arrays(picture->data, picture->linesize,
408                                 ptr, pix_fmt, width, height, 1);
409 }
410
411 int avpicture_layout(const AVPicture* src, enum AVPixelFormat pix_fmt, int width, int height,
412                      unsigned char *dest, int dest_size)
413 {
414     return av_image_copy_to_buffer(dest, dest_size,
415                                    (const uint8_t * const*)src->data, src->linesize,
416                                    pix_fmt, width, height, 1);
417 }
418
419 int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height)
420 {
421     return av_image_get_buffer_size(pix_fmt, width, height, 1);
422 }
423
424 static int get_pix_fmt_depth(int *min, int *max, enum AVPixelFormat pix_fmt)
425 {
426     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
427     int i;
428
429     if (!desc || !desc->nb_components) {
430         *min = *max = 0;
431         return AVERROR(EINVAL);
432     }
433
434     *min = INT_MAX, *max = -INT_MAX;
435     for (i = 0; i < desc->nb_components; i++) {
436         *min = FFMIN(desc->comp[i].depth_minus1+1, *min);
437         *max = FFMAX(desc->comp[i].depth_minus1+1, *max);
438     }
439     return 0;
440 }
441
442 int avcodec_get_pix_fmt_loss(enum AVPixelFormat dst_pix_fmt, enum AVPixelFormat src_pix_fmt,
443                              int has_alpha)
444 {
445     const PixFmtInfo *pf, *ps;
446     const AVPixFmtDescriptor *src_desc = av_pix_fmt_desc_get(src_pix_fmt);
447     const AVPixFmtDescriptor *dst_desc = av_pix_fmt_desc_get(dst_pix_fmt);
448     int src_min_depth, src_max_depth, dst_min_depth, dst_max_depth;
449     int ret, loss;
450
451     if (dst_pix_fmt >= AV_PIX_FMT_NB || dst_pix_fmt <= AV_PIX_FMT_NONE)
452         return ~0;
453
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_desc_get(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 && dst_pix_fmt2 != AV_PIX_FMT_NONE && dst_pix_fmt1 != AV_PIX_FMT_NONE){ /* 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_desc_get(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     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
745     int y_shift;
746     int x_shift;
747
748     if (pix_fmt < 0 || pix_fmt >= AV_PIX_FMT_NB)
749         return -1;
750
751     y_shift = desc->log2_chroma_h;
752     x_shift = desc->log2_chroma_w;
753
754     if (is_yuv_planar(pix_fmt)) {
755     dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
756     dst->data[1] = src->data[1] + ((top_band >> y_shift) * src->linesize[1]) + (left_band >> x_shift);
757     dst->data[2] = src->data[2] + ((top_band >> y_shift) * src->linesize[2]) + (left_band >> x_shift);
758     } else{
759         if(top_band % (1<<y_shift) || left_band % (1<<x_shift))
760             return -1;
761         if(left_band) //FIXME add support for this too
762             return -1;
763         dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
764     }
765
766     dst->linesize[0] = src->linesize[0];
767     dst->linesize[1] = src->linesize[1];
768     dst->linesize[2] = src->linesize[2];
769     return 0;
770 }
771
772 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width,
773                    enum AVPixelFormat pix_fmt, int padtop, int padbottom, int padleft, int padright,
774             int *color)
775 {
776     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
777     uint8_t *optr;
778     int y_shift;
779     int x_shift;
780     int yheight;
781     int i, y;
782
783     if (pix_fmt < 0 || pix_fmt >= AV_PIX_FMT_NB ||
784         !is_yuv_planar(pix_fmt)) return -1;
785
786     for (i = 0; i < 3; i++) {
787         x_shift = i ? desc->log2_chroma_w : 0;
788         y_shift = i ? desc->log2_chroma_h : 0;
789
790         if (padtop || padleft) {
791             memset(dst->data[i], color[i],
792                 dst->linesize[i] * (padtop >> y_shift) + (padleft >> x_shift));
793         }
794
795         if (padleft || padright) {
796             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
797                 (dst->linesize[i] - (padright >> x_shift));
798             yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
799             for (y = 0; y < yheight; y++) {
800                 memset(optr, color[i], (padleft + padright) >> x_shift);
801                 optr += dst->linesize[i];
802             }
803         }
804
805         if (src) { /* first line */
806             uint8_t *iptr = src->data[i];
807             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
808                     (padleft >> x_shift);
809             memcpy(optr, iptr, (width - padleft - padright) >> x_shift);
810             iptr += src->linesize[i];
811             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
812                 (dst->linesize[i] - (padright >> x_shift));
813             yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
814             for (y = 0; y < yheight; y++) {
815                 memset(optr, color[i], (padleft + padright) >> x_shift);
816                 memcpy(optr + ((padleft + padright) >> x_shift), iptr,
817                        (width - padleft - padright) >> x_shift);
818                 iptr += src->linesize[i];
819                 optr += dst->linesize[i];
820             }
821         }
822
823         if (padbottom || padright) {
824             optr = dst->data[i] + dst->linesize[i] *
825                 ((height - padbottom) >> y_shift) - (padright >> x_shift);
826             memset(optr, color[i],dst->linesize[i] *
827                 (padbottom >> y_shift) + (padright >> x_shift));
828         }
829     }
830     return 0;
831 }
832
833 #if !HAVE_MMX_EXTERNAL
834 /* filter parameters: [-1 4 2 4 -1] // 8 */
835 static void deinterlace_line_c(uint8_t *dst,
836                              const uint8_t *lum_m4, const uint8_t *lum_m3,
837                              const uint8_t *lum_m2, const uint8_t *lum_m1,
838                              const uint8_t *lum,
839                              int size)
840 {
841     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
842     int sum;
843
844     for(;size > 0;size--) {
845         sum = -lum_m4[0];
846         sum += lum_m3[0] << 2;
847         sum += lum_m2[0] << 1;
848         sum += lum_m1[0] << 2;
849         sum += -lum[0];
850         dst[0] = cm[(sum + 4) >> 3];
851         lum_m4++;
852         lum_m3++;
853         lum_m2++;
854         lum_m1++;
855         lum++;
856         dst++;
857     }
858 }
859
860 static void deinterlace_line_inplace_c(uint8_t *lum_m4, uint8_t *lum_m3,
861                                        uint8_t *lum_m2, uint8_t *lum_m1,
862                                        uint8_t *lum, int size)
863 {
864     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
865     int sum;
866
867     for(;size > 0;size--) {
868         sum = -lum_m4[0];
869         sum += lum_m3[0] << 2;
870         sum += lum_m2[0] << 1;
871         lum_m4[0]=lum_m2[0];
872         sum += lum_m1[0] << 2;
873         sum += -lum[0];
874         lum_m2[0] = cm[(sum + 4) >> 3];
875         lum_m4++;
876         lum_m3++;
877         lum_m2++;
878         lum_m1++;
879         lum++;
880     }
881 }
882 #endif /* !HAVE_MMX_EXTERNAL */
883
884 /* deinterlacing : 2 temporal taps, 3 spatial taps linear filter. The
885    top field is copied as is, but the bottom field is deinterlaced
886    against the top field. */
887 static void deinterlace_bottom_field(uint8_t *dst, int dst_wrap,
888                                     const uint8_t *src1, int src_wrap,
889                                     int width, int height)
890 {
891     const uint8_t *src_m2, *src_m1, *src_0, *src_p1, *src_p2;
892     int y;
893
894     src_m2 = src1;
895     src_m1 = src1;
896     src_0=&src_m1[src_wrap];
897     src_p1=&src_0[src_wrap];
898     src_p2=&src_p1[src_wrap];
899     for(y=0;y<(height-2);y+=2) {
900         memcpy(dst,src_m1,width);
901         dst += dst_wrap;
902         deinterlace_line(dst,src_m2,src_m1,src_0,src_p1,src_p2,width);
903         src_m2 = src_0;
904         src_m1 = src_p1;
905         src_0 = src_p2;
906         src_p1 += 2*src_wrap;
907         src_p2 += 2*src_wrap;
908         dst += dst_wrap;
909     }
910     memcpy(dst,src_m1,width);
911     dst += dst_wrap;
912     /* do last line */
913     deinterlace_line(dst,src_m2,src_m1,src_0,src_0,src_0,width);
914 }
915
916 static void deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
917                                              int width, int height)
918 {
919     uint8_t *src_m1, *src_0, *src_p1, *src_p2;
920     int y;
921     uint8_t *buf;
922     buf = av_malloc(width);
923
924     src_m1 = src1;
925     memcpy(buf,src_m1,width);
926     src_0=&src_m1[src_wrap];
927     src_p1=&src_0[src_wrap];
928     src_p2=&src_p1[src_wrap];
929     for(y=0;y<(height-2);y+=2) {
930         deinterlace_line_inplace(buf,src_m1,src_0,src_p1,src_p2,width);
931         src_m1 = src_p1;
932         src_0 = src_p2;
933         src_p1 += 2*src_wrap;
934         src_p2 += 2*src_wrap;
935     }
936     /* do last line */
937     deinterlace_line_inplace(buf,src_m1,src_0,src_0,src_0,width);
938     av_free(buf);
939 }
940
941 int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
942                           enum AVPixelFormat pix_fmt, int width, int height)
943 {
944     int i;
945
946     if (pix_fmt != AV_PIX_FMT_YUV420P &&
947         pix_fmt != AV_PIX_FMT_YUVJ420P &&
948         pix_fmt != AV_PIX_FMT_YUV422P &&
949         pix_fmt != AV_PIX_FMT_YUVJ422P &&
950         pix_fmt != AV_PIX_FMT_YUV444P &&
951         pix_fmt != AV_PIX_FMT_YUV411P &&
952         pix_fmt != AV_PIX_FMT_GRAY8)
953         return -1;
954     if ((width & 3) != 0 || (height & 3) != 0)
955         return -1;
956
957     for(i=0;i<3;i++) {
958         if (i == 1) {
959             switch(pix_fmt) {
960             case AV_PIX_FMT_YUVJ420P:
961             case AV_PIX_FMT_YUV420P:
962                 width >>= 1;
963                 height >>= 1;
964                 break;
965             case AV_PIX_FMT_YUV422P:
966             case AV_PIX_FMT_YUVJ422P:
967                 width >>= 1;
968                 break;
969             case AV_PIX_FMT_YUV411P:
970                 width >>= 2;
971                 break;
972             default:
973                 break;
974             }
975             if (pix_fmt == AV_PIX_FMT_GRAY8) {
976                 break;
977             }
978         }
979         if (src == dst) {
980             deinterlace_bottom_field_inplace(dst->data[i], dst->linesize[i],
981                                  width, height);
982         } else {
983             deinterlace_bottom_field(dst->data[i],dst->linesize[i],
984                                         src->data[i], src->linesize[i],
985                                         width, height);
986         }
987     }
988     emms_c();
989     return 0;
990 }