Mercurial > libavcore.hg
annotate imgutils.c @ 15:665cb0c97133 libavcore
Implement av_get_image_linesize() and use it in
ff_get_plane_bytewidth().
The new implementation is more generic, more compact and more correct.
| author | stefano |
|---|---|
| date | Thu, 12 Aug 2010 15:05:58 +0000 |
| parents | caf03c72a254 |
| children | 1a1faa090ff1 |
| 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 |
| 15 | 27 int av_get_image_linesize(enum PixelFormat pix_fmt, int width, int plane) |
| 28 { | |
| 29 const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt]; | |
| 30 int max_step [4]; /* max pixel step for each plane */ | |
| 31 int max_step_comp[4]; /* the component for each plane which has the max pixel step */ | |
| 32 int s, i; | |
| 33 | |
| 34 if (desc->flags & PIX_FMT_BITSTREAM) | |
| 35 return (width * (desc->comp[0].step_minus1+1) + 7) >> 3; | |
| 36 | |
| 37 memset(max_step , 0, sizeof(max_step )); | |
| 38 memset(max_step_comp, 0, sizeof(max_step_comp)); | |
| 39 for (i = 0; i < 4; i++) { | |
| 40 const AVComponentDescriptor *comp = &(desc->comp[i]); | |
| 41 if ((comp->step_minus1+1) > max_step[comp->plane]) { | |
| 42 max_step [comp->plane] = comp->step_minus1+1; | |
| 43 max_step_comp[comp->plane] = i; | |
| 44 } | |
| 45 } | |
| 46 | |
| 47 s = (max_step_comp[plane] == 1 || max_step_comp[plane] == 2) ? desc->log2_chroma_w : 0; | |
| 48 return max_step[plane] * (((width + (1 << s) - 1)) >> s); | |
| 49 } | |
| 50 | |
|
12
c37229a98056
Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents:
11
diff
changeset
|
51 int av_fill_image_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
|
52 { |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
53 int i; |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
54 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
|
55 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
|
56 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
|
57 |
|
12
c37229a98056
Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents:
11
diff
changeset
|
58 memset(linesizes, 0, 4*sizeof(linesizes[0])); |
|
8
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
59 |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
60 if (desc->flags & PIX_FMT_HWACCEL) |
|
10
356600e12af7
Make av_fill_image_linesizes() return a meaningful error core rather
stefano
parents:
9
diff
changeset
|
61 return AVERROR(EINVAL); |
|
8
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
62 |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
63 if (desc->flags & PIX_FMT_BITSTREAM) { |
|
12
c37229a98056
Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents:
11
diff
changeset
|
64 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
|
65 return 0; |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
66 } |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
67 |
|
9
4cecefd36670
Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents:
8
diff
changeset
|
68 memset(max_step , 0, sizeof(max_step )); |
|
4cecefd36670
Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents:
8
diff
changeset
|
69 memset(max_step_comp, 0, sizeof(max_step_comp)); |
|
8
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
70 for (i = 0; i < 4; i++) { |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
71 const AVComponentDescriptor *comp = &(desc->comp[i]); |
|
9
4cecefd36670
Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents:
8
diff
changeset
|
72 if ((comp->step_minus1+1) > max_step[comp->plane]) { |
|
4cecefd36670
Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents:
8
diff
changeset
|
73 max_step [comp->plane] = comp->step_minus1+1; |
|
4cecefd36670
Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents:
8
diff
changeset
|
74 max_step_comp[comp->plane] = i; |
|
8
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 } |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
77 |
|
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 |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
86 int av_fill_image_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 |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
12
diff
changeset
|
131 int av_check_image_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx) |
|
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 |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
12
diff
changeset
|
135 if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8) |
|
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 | 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 } |
