annotate imgutils.c @ 11:dabaa2056109 libavcore

Reimplement av_fill_image_pointers() using the information stored in the pixdescs. The new implementation is more compact, and does not need to be updated at each pixel format addition.
author stefano
date Fri, 30 Jul 2010 08:42:19 +0000
parents 356600e12af7
children c37229a98056
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
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
27 int av_fill_image_linesizes(int linesize[4], enum PixelFormat pix_fmt, int width)
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
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
34 memset(linesize, 0, 4*sizeof(linesize[0]));
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) {
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff changeset
40 linesize[0] = (width * (desc->comp[0].step_minus1+1) + 7) >> 3;
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;
4cecefd36670 Rename av_fill_image_linesizes() internal variables max_plane_step and
stefano
parents: 8
diff changeset
56 linesize[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 }