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