annotate imgutils.c @ 23:478992775cf8 libavcore

Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore, and deprecate the old function.
author stefano
date Tue, 07 Sep 2010 21:23:45 +0000
parents 0899fc09d43c
children c063c88b1309
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
1 /*
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
2 * This file is part of FFmpeg.
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
3 *
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
4 * FFmpeg is free software; you can redistribute it and/or
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
6 * License as published by the Free Software Foundation; either
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
7 * version 2.1 of the License, or (at your option) any later version.
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
8 *
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
9 * FFmpeg is distributed in the hope that it will be useful,
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
12 * Lesser General Public License for more details.
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
13 *
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
15 * License along with FFmpeg; if not, write to the Free Software
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
17 */
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
18
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
19 /**
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
20 * @file
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
21 * misc image utilities
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
22 */
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
23
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
24 #include "imgutils.h"
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
25 #include "libavutil/pixdesc.h"
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
26
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
27 void av_image_fill_max_pixsteps(int max_pixsteps[4], int max_pixstep_comps[4],
21
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
28 const AVPixFmtDescriptor *pixdesc)
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
29 {
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
30 int i;
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
31 memset(max_pixsteps, 0, 4*sizeof(max_pixsteps[0]));
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
32 if (max_pixstep_comps)
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
33 memset(max_pixstep_comps, 0, 4*sizeof(max_pixstep_comps[0]));
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
34
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
35 for (i = 0; i < 4; i++) {
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
36 const AVComponentDescriptor *comp = &(pixdesc->comp[i]);
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
37 if ((comp->step_minus1+1) > max_pixsteps[comp->plane]) {
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
38 max_pixsteps[comp->plane] = comp->step_minus1+1;
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
39 if (max_pixstep_comps)
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
40 max_pixstep_comps[comp->plane] = i;
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
41 }
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
42 }
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
43 }
3b8eec1cfdaa Make av_fill_image_max_pixsteps() non static non inline.
stefano
parents: 19
diff changeset
44
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
45 int av_image_get_linesize(enum PixelFormat pix_fmt, int width, int plane)
15
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
46 {
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
47 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
48 int max_step [4]; /* max pixel step for each plane */
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
49 int max_step_comp[4]; /* the component for each plane which has the max pixel step */
16
1a1faa090ff1 Implement inline function av_fill_image_max_pixstep() and use it for
stefano
parents: 15
diff changeset
50 int s;
15
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
51
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
52 if (desc->flags & PIX_FMT_BITSTREAM)
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
53 return (width * (desc->comp[0].step_minus1+1) + 7) >> 3;
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
54
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
55 av_image_fill_max_pixsteps(max_step, max_step_comp, desc);
15
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
56 s = (max_step_comp[plane] == 1 || max_step_comp[plane] == 2) ? desc->log2_chroma_w : 0;
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
57 return max_step[plane] * (((width + (1 << s) - 1)) >> s);
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
58 }
665cb0c97133 Implement av_get_image_linesize() and use it in
stefano
parents: 14
diff changeset
59
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
60 int av_image_fill_linesizes(int linesizes[4], enum PixelFormat pix_fmt, int width)
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
61 {
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
62 int i;
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
63 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
9
4cecefd36670 Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents: 8
diff changeset
64 int max_step [4]; /* max pixel step for each plane */
4cecefd36670 Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents: 8
diff changeset
65 int max_step_comp[4]; /* the component for each plane which has the max pixel step */
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
66
12
c37229a98056 Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents: 11
diff changeset
67 memset(linesizes, 0, 4*sizeof(linesizes[0]));
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
68
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
69 if (desc->flags & PIX_FMT_HWACCEL)
10
356600e12af7 Make av_fill_image_linesizes() return a meaningful error core rather
stefano
parents: 9
diff changeset
70 return AVERROR(EINVAL);
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
71
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
72 if (desc->flags & PIX_FMT_BITSTREAM) {
12
c37229a98056 Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents: 11
diff changeset
73 linesizes[0] = (width * (desc->comp[0].step_minus1+1) + 7) >> 3;
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
74 return 0;
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
75 }
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
76
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
77 av_image_fill_max_pixsteps(max_step, max_step_comp, desc);
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
78 for (i = 0; i < 4; i++) {
9
4cecefd36670 Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents: 8
diff changeset
79 int s = (max_step_comp[i] == 1 || max_step_comp[i] == 2) ? desc->log2_chroma_w : 0;
12
c37229a98056 Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents: 11
diff changeset
80 linesizes[i] = max_step[i] * (((width + (1 << s) - 1)) >> s);
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
81 }
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
82
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
83 return 0;
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
84 }
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
85
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
86 int av_image_fill_pointers(uint8_t *data[4], enum PixelFormat pix_fmt, int height,
11
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
87 uint8_t *ptr, const int linesizes[4])
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
88 {
11
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
89 int i, total_size, size[4], has_plane[4];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
90
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
91 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
11
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
92 memset(data , 0, sizeof(data[0])*4);
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
93 memset(size , 0, sizeof(size));
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
94 memset(has_plane, 0, sizeof(has_plane));
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
95
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
96 if (desc->flags & PIX_FMT_HWACCEL)
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
97 return AVERROR(EINVAL);
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
98
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
99 data[0] = ptr;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
100 size[0] = linesizes[0] * height;
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
101
11
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
102 if (desc->flags & PIX_FMT_PAL) {
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
103 size[0] = (size[0] + 3) & ~3;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
104 data[1] = ptr + size[0]; /* palette is stored here as 256 32 bits words */
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
105 return size[0] + 256 * 4;
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
106 }
11
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
107
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
108 for (i = 0; i < 4; i++)
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
109 has_plane[desc->comp[i].plane] = 1;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
110
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
111 total_size = size[0];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
112 for (i = 1; has_plane[i] && i < 4; i++) {
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
113 int h, s = (i == 1 || i == 2) ? desc->log2_chroma_h : 0;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
114 data[i] = data[i-1] + size[i-1];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
115 h = (height + (1 << s) - 1) >> s;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
116 size[i] = h * linesizes[i];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
117 total_size += size[i];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
118 }
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
119
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
120 return total_size;
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
121 }
13
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
122
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
123 typedef struct ImgUtils {
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
124 const AVClass *class;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
125 int log_offset;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
126 void *log_ctx;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
127 } ImgUtils;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
128
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
129 static const AVClass imgutils_class = { "IMGUTILS", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT, offsetof(ImgUtils, log_offset), offsetof(ImgUtils, log_ctx) };
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
130
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
131 int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
13
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
132 {
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
133 ImgUtils imgutils = { &imgutils_class, log_offset, log_ctx };
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
134
19
cee2ee2eff81 Cosmetics: if( -> if (.
stefano
parents: 18
diff changeset
135 if ((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8)
13
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
136 return 0;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
137
14
caf03c72a254 Clarify av_check_image_size() log message.
stefano
parents: 13
diff changeset
138 av_log(&imgutils, AV_LOG_ERROR, "Picture size %ux%u is invalid\n", w, h);
13
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
139 return AVERROR(EINVAL);
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
140 }
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
141
23
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
142 void av_image_copy_plane(uint8_t *dst, int dst_linesize,
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
143 const uint8_t *src, int src_linesize,
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
144 int bytewidth, int height)
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
145 {
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
146 if (!dst || !src)
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
147 return;
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
148 for (;height > 0; height--) {
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
149 memcpy(dst, src, bytewidth);
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
150 dst += dst_linesize;
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
151 src += src_linesize;
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
152 }
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
153 }
478992775cf8 Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,
stefano
parents: 22
diff changeset
154
22
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
155 #if FF_API_OLD_IMAGE_NAMES
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
156 void av_fill_image_max_pixsteps(int max_pixsteps[4], int max_pixstep_comps[4],
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
157 const AVPixFmtDescriptor *pixdesc)
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
158 {
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
159 av_image_fill_max_pixsteps(max_pixsteps, max_pixstep_comps, pixdesc);
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
160 }
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
161
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
162 int av_get_image_linesize(enum PixelFormat pix_fmt, int width, int plane)
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
163 {
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
164 return av_image_get_linesize(pix_fmt, width, plane);
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
165 }
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
166
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
167 int av_fill_image_linesizes(int linesizes[4], enum PixelFormat pix_fmt, int width)
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
168 {
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
169 return av_image_fill_linesizes(linesizes, pix_fmt, width);
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
170 }
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
171
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
172 int av_fill_image_pointers(uint8_t *data[4], enum PixelFormat pix_fmt, int height,
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
173 uint8_t *ptr, const int linesizes[4])
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
174 {
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
175 return av_image_fill_pointers(data, pix_fmt, height, ptr, linesizes);
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
176 }
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
177
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
178 int av_check_image_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
179 {
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
180 return av_image_check_size(w, h, log_offset, log_ctx);
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
181 }
0899fc09d43c Adopt a hierarchical name scheme for the imgutils.h API. Simplify
stefano
parents: 21
diff changeset
182 #endif