]> git.sesse.net Git - ffmpeg/blob - libavcodec/imgconvert.c
avcodec: Remove deprecated avcodec_get_chroma_sub_sample
[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 #include "avcodec.h"
28 #include "internal.h"
29 #include "mathops.h"
30 #include "libavutil/colorspace.h"
31 #include "libavutil/common.h"
32 #include "libavutil/pixdesc.h"
33 #include "libavutil/internal.h"
34 #include "libavutil/imgutils.h"
35
36 #if FF_API_AVCODEC_PIX_FMT
37 int avcodec_get_pix_fmt_loss(enum AVPixelFormat dst_pix_fmt,
38                              enum AVPixelFormat src_pix_fmt,
39                              int has_alpha)
40 {
41     return av_get_pix_fmt_loss(dst_pix_fmt, src_pix_fmt, has_alpha);
42 }
43
44 enum AVPixelFormat avcodec_find_best_pix_fmt_of_2(enum AVPixelFormat dst_pix_fmt1, enum AVPixelFormat dst_pix_fmt2,
45                                             enum AVPixelFormat src_pix_fmt, int has_alpha, int *loss_ptr)
46 {
47     return av_find_best_pix_fmt_of_2(dst_pix_fmt1, dst_pix_fmt2, src_pix_fmt, has_alpha, loss_ptr);
48 }
49
50 enum AVPixelFormat avcodec_find_best_pix_fmt2(enum AVPixelFormat dst_pix_fmt1, enum AVPixelFormat dst_pix_fmt2,
51                                             enum AVPixelFormat src_pix_fmt, int has_alpha, int *loss_ptr)
52 {
53     return av_find_best_pix_fmt_of_2(dst_pix_fmt1, dst_pix_fmt2, src_pix_fmt, has_alpha, loss_ptr);
54 }
55
56 #endif
57 enum AVPixelFormat avcodec_find_best_pix_fmt_of_list(const enum AVPixelFormat *pix_fmt_list,
58                                             enum AVPixelFormat src_pix_fmt,
59                                             int has_alpha, int *loss_ptr){
60     int i;
61
62     enum AVPixelFormat best = AV_PIX_FMT_NONE;
63     int loss;
64
65     for (i=0; pix_fmt_list[i] != AV_PIX_FMT_NONE; i++) {
66         loss = loss_ptr ? *loss_ptr : 0;
67         best = av_find_best_pix_fmt_of_2(best, pix_fmt_list[i], src_pix_fmt, has_alpha, &loss);
68     }
69
70     if (loss_ptr)
71         *loss_ptr = loss;
72     return best;
73 }
74
75 #if FF_API_AVPICTURE
76 FF_DISABLE_DEPRECATION_WARNINGS
77 /* return true if yuv planar */
78 static inline int is_yuv_planar(const AVPixFmtDescriptor *desc)
79 {
80     int i;
81     int planes[4] = { 0 };
82
83     if (     desc->flags & AV_PIX_FMT_FLAG_RGB
84         || !(desc->flags & AV_PIX_FMT_FLAG_PLANAR))
85         return 0;
86
87     /* set the used planes */
88     for (i = 0; i < desc->nb_components; i++)
89         planes[desc->comp[i].plane] = 1;
90
91     /* if there is an unused plane, the format is not planar */
92     for (i = 0; i < desc->nb_components; i++)
93         if (!planes[i])
94             return 0;
95     return 1;
96 }
97
98 int av_picture_crop(AVPicture *dst, const AVPicture *src,
99                     enum AVPixelFormat pix_fmt, int top_band, int left_band)
100 {
101     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
102     int y_shift;
103     int x_shift;
104     int max_step[4];
105
106     if (pix_fmt < 0 || pix_fmt >= AV_PIX_FMT_NB)
107         return -1;
108
109     y_shift = desc->log2_chroma_h;
110     x_shift = desc->log2_chroma_w;
111     av_image_fill_max_pixsteps(max_step, NULL, desc);
112
113     if (is_yuv_planar(desc)) {
114     dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
115     dst->data[1] = src->data[1] + ((top_band >> y_shift) * src->linesize[1]) + (left_band >> x_shift);
116     dst->data[2] = src->data[2] + ((top_band >> y_shift) * src->linesize[2]) + (left_band >> x_shift);
117     } else{
118         if(top_band % (1<<y_shift) || left_band % (1<<x_shift))
119             return -1;
120         dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + (left_band * max_step[0]);
121     }
122
123     dst->linesize[0] = src->linesize[0];
124     dst->linesize[1] = src->linesize[1];
125     dst->linesize[2] = src->linesize[2];
126     return 0;
127 }
128
129 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width,
130                    enum AVPixelFormat pix_fmt, int padtop, int padbottom, int padleft, int padright,
131             int *color)
132 {
133     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
134     uint8_t *optr;
135     int y_shift;
136     int x_shift;
137     int yheight;
138     int i, y;
139     int max_step[4];
140
141     if (pix_fmt < 0 || pix_fmt >= AV_PIX_FMT_NB)
142         return -1;
143
144     if (!is_yuv_planar(desc)) {
145         if (src)
146             return -1; //TODO: Not yet implemented
147
148         av_image_fill_max_pixsteps(max_step, NULL, desc);
149
150         if (padtop || padleft) {
151             memset(dst->data[0], color[0],
152                     dst->linesize[0] * padtop + (padleft * max_step[0]));
153         }
154
155         if (padleft || padright) {
156             optr = dst->data[0] + dst->linesize[0] * padtop +
157                     (dst->linesize[0] - (padright * max_step[0]));
158             yheight = height - 1 - (padtop + padbottom);
159             for (y = 0; y < yheight; y++) {
160                 memset(optr, color[0], (padleft + padright) * max_step[0]);
161                 optr += dst->linesize[0];
162             }
163         }
164
165         if (padbottom || padright) {
166             optr = dst->data[0] + dst->linesize[0] * (height - padbottom) -
167                     (padright * max_step[0]);
168             memset(optr, color[0], dst->linesize[0] * padbottom +
169                     (padright * max_step[0]));
170         }
171
172         return 0;
173     }
174
175     for (i = 0; i < 3; i++) {
176         x_shift = i ? desc->log2_chroma_w : 0;
177         y_shift = i ? desc->log2_chroma_h : 0;
178
179         if (padtop || padleft) {
180             memset(dst->data[i], color[i],
181                 dst->linesize[i] * (padtop >> y_shift) + (padleft >> x_shift));
182         }
183
184         if (padleft || padright) {
185             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
186                 (dst->linesize[i] - (padright >> x_shift));
187             yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
188             for (y = 0; y < yheight; y++) {
189                 memset(optr, color[i], (padleft + padright) >> x_shift);
190                 optr += dst->linesize[i];
191             }
192         }
193
194         if (src) { /* first line */
195             uint8_t *iptr = src->data[i];
196             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
197                     (padleft >> x_shift);
198             memcpy(optr, iptr, (width - padleft - padright) >> x_shift);
199             iptr += src->linesize[i];
200             optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
201                 (dst->linesize[i] - (padright >> x_shift));
202             yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
203             for (y = 0; y < yheight; y++) {
204                 memset(optr, color[i], (padleft + padright) >> x_shift);
205                 memcpy(optr + ((padleft + padright) >> x_shift), iptr,
206                        (width - padleft - padright) >> x_shift);
207                 iptr += src->linesize[i];
208                 optr += dst->linesize[i];
209             }
210         }
211
212         if (padbottom || padright) {
213             optr = dst->data[i] + dst->linesize[i] *
214                 ((height - padbottom) >> y_shift) - (padright >> x_shift);
215             memset(optr, color[i],dst->linesize[i] *
216                 (padbottom >> y_shift) + (padright >> x_shift));
217         }
218     }
219
220     return 0;
221 }
222 FF_ENABLE_DEPRECATION_WARNINGS
223 #endif /* FF_API_AVPICTURE */