annotate imgutils.c @ 13:97c3fe501477 libavcore

Deprecate avcodec_check_dimensions() in favor of the new function av_check_image_size() declared in libavcore/imgutils.h.
author stefano
date Fri, 06 Aug 2010 09:36:45 +0000
parents c37229a98056
children caf03c72a254
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
12
c37229a98056 Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents: 11
diff changeset
27 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
28 {
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
29 int i;
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
30 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
31 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
32 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
33
12
c37229a98056 Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents: 11
diff changeset
34 memset(linesizes, 0, 4*sizeof(linesizes[0]));
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
35
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
36 if (desc->flags & PIX_FMT_HWACCEL)
10
356600e12af7 Make av_fill_image_linesizes() return a meaningful error core rather
stefano
parents: 9
diff changeset
37 return AVERROR(EINVAL);
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
38
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
39 if (desc->flags & PIX_FMT_BITSTREAM) {
12
c37229a98056 Rename the av_fill_image_linesize() formal parameter linesize to
stefano
parents: 11
diff changeset
40 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
41 return 0;
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
42 }
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
43
9
4cecefd36670 Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents: 8
diff changeset
44 memset(max_step , 0, sizeof(max_step ));
4cecefd36670 Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents: 8
diff changeset
45 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
46 for (i = 0; i < 4; i++) {
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
47 const AVComponentDescriptor *comp = &(desc->comp[i]);
9
4cecefd36670 Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents: 8
diff changeset
48 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
49 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
50 max_step_comp[comp->plane] = i;
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
51 }
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
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
54 for (i = 0; i < 4; i++) {
9
4cecefd36670 Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents: 8
diff changeset
55 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
56 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
57 }
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
58
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
59 return 0;
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
60 }
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 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
63 uint8_t *ptr, const int linesizes[4])
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
64 {
11
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
65 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
66
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
67 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
68 memset(data , 0, sizeof(data[0])*4);
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
69 memset(size , 0, sizeof(size));
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
70 memset(has_plane, 0, sizeof(has_plane));
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
71
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
72 if (desc->flags & PIX_FMT_HWACCEL)
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
73 return AVERROR(EINVAL);
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
74
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
75 data[0] = ptr;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
76 size[0] = linesizes[0] * height;
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
77
11
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
78 if (desc->flags & PIX_FMT_PAL) {
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
79 size[0] = (size[0] + 3) & ~3;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
80 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
81 return size[0] + 256 * 4;
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
82 }
11
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
83
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
84 for (i = 0; i < 4; i++)
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
85 has_plane[desc->comp[i].plane] = 1;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
86
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
87 total_size = size[0];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
88 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
89 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
90 data[i] = data[i-1] + size[i-1];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
91 h = (height + (1 << s) - 1) >> s;
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
92 size[i] = h * linesizes[i];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
93 total_size += size[i];
dabaa2056109 Reimplement av_fill_image_pointers() using the information stored in
stefano
parents: 10
diff changeset
94 }
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 return total_size;
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
97 }
13
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
98
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
99 typedef struct ImgUtils {
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
100 const AVClass *class;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
101 int log_offset;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
102 void *log_ctx;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
103 } ImgUtils;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
104
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
105 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
106
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
107 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
108 {
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
109 ImgUtils imgutils = { &imgutils_class, log_offset, log_ctx };
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
110
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
111 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
112 return 0;
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
113
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
114 av_log(&imgutils, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h);
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
115 return AVERROR(EINVAL);
97c3fe501477 Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents: 12
diff changeset
116 }