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