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