Mercurial > libavcore.hg
annotate imgutils.h @ 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 | 97c3fe501477 |
| 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 #ifndef AVCORE_IMGUTILS_H |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
20 #define AVCORE_IMGUTILS_H |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
21 |
|
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 * @file |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
24 * misc image utilities |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
25 */ |
|
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 #include "libavutil/pixfmt.h" |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
28 #include "avcore.h" |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
29 |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
30 /** |
| 15 | 31 * Compute the size of an image line with format pix_fmt and width |
| 32 * width for the plane plane. | |
| 33 * | |
| 34 * @return the computed size in bytes | |
| 35 */ | |
| 36 int av_get_image_linesize(enum PixelFormat pix_fmt, int width, int plane); | |
| 37 | |
| 38 /** | |
|
8
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
39 * Fill plane linesizes for an image with pixel format pix_fmt and |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
40 * width width. |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
41 * |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
42 * @param linesizes array to be filled with the linesize for each plane |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
43 * @return >= 0 in case of success, a negative error code otherwise |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
44 */ |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
45 int av_fill_image_linesizes(int linesizes[4], enum PixelFormat pix_fmt, int width); |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
46 |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
47 /** |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
48 * Fill plane data pointers for an image with pixel format pix_fmt and |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
49 * height height. |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
50 * |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
51 * @param data pointers array to be filled with the pointer for each image plane |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
52 * @param ptr the pointer to a buffer which will contain the image |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
53 * @param linesizes[4] the array containing the linesize for each |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
54 * plane, should be filled by av_fill_image_linesizes() |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
55 * @return the size in bytes required for the image buffer, a negative |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
56 * error code in case of failure |
|
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 int av_fill_image_pointers(uint8_t *data[4], enum PixelFormat pix_fmt, int height, |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
59 uint8_t *ptr, const int linesizes[4]); |
|
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
60 |
|
13
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
61 /** |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
62 * Check if the given dimension of an image is valid, meaning that all |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
63 * bytes of the image can be addressed with a signed int. |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
64 * |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
65 * @param w the width of the picture |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
66 * @param h the height of the picture |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
67 * @param log_offset the offset to sum to the log level for logging with log_ctx |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
68 * @param log_ctx the parent logging context, it may be NULL |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
69 * @return >= 0 if valid, a negative error code otherwise |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
70 */ |
|
97c3fe501477
Deprecate avcodec_check_dimensions() in favor of the new function
stefano
parents:
8
diff
changeset
|
71 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:
8
diff
changeset
|
72 |
|
8
f214f755f5de
Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents:
diff
changeset
|
73 #endif /* AVCORE_IMGUTILS_H */ |
