ffmpeg / libavcore / imgutils.h @ a6ddf8bf
History | View | Annotate | Download (3.88 KB)
1 |
/*
|
---|---|
2 |
* This file is part of FFmpeg.
|
3 |
*
|
4 |
* FFmpeg is free software; you can redistribute it and/or
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
6 |
* License as published by the Free Software Foundation; either
|
7 |
* version 2.1 of the License, or (at your option) any later version.
|
8 |
*
|
9 |
* FFmpeg is distributed in the hope that it will be useful,
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
12 |
* Lesser General Public License for more details.
|
13 |
*
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
15 |
* License along with FFmpeg; if not, write to the Free Software
|
16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
17 |
*/
|
18 |
|
19 |
#ifndef AVCORE_IMGUTILS_H
|
20 |
#define AVCORE_IMGUTILS_H
|
21 |
|
22 |
/**
|
23 |
* @file
|
24 |
* misc image utilities
|
25 |
*/
|
26 |
|
27 |
#include "libavutil/pixdesc.h" |
28 |
#include "avcore.h" |
29 |
|
30 |
/**
|
31 |
* Compute the max pixel step for each plane of an image with a
|
32 |
* format described by pixdesc
|
33 |
*
|
34 |
* The pixel step is the distance in bytes between the first byte of
|
35 |
* the group of bytes which describe a pixel component and the first
|
36 |
* byte of the successive group in the same plane for the same
|
37 |
* component.
|
38 |
*
|
39 |
* @param max_pixstep an array which is filled with the max pixel step
|
40 |
* for each plane. Since a plane may contain different pixel
|
41 |
* components, the computed max_pixstep[plane] is relative to the
|
42 |
* component in the plane with the max pixel step.
|
43 |
* @param max_pixstep_comp an array which is filled with the component
|
44 |
* for each plane which has the max pixel step. May be NULL.
|
45 |
*/
|
46 |
static inline void av_fill_image_max_pixstep(int max_pixstep[4], int max_pixstep_comp[4], |
47 |
const AVPixFmtDescriptor *pixdesc)
|
48 |
{ |
49 |
int i;
|
50 |
memset(max_pixstep, 0, 4*sizeof(max_pixstep[0])); |
51 |
if (max_pixstep_comp)
|
52 |
memset(max_pixstep_comp, 0, 4*sizeof(max_pixstep_comp[0])); |
53 |
|
54 |
for (i = 0; i < 4; i++) { |
55 |
const AVComponentDescriptor *comp = &(pixdesc->comp[i]);
|
56 |
if ((comp->step_minus1+1) > max_pixstep[comp->plane]) { |
57 |
max_pixstep[comp->plane] = comp->step_minus1+1;
|
58 |
if (max_pixstep_comp)
|
59 |
max_pixstep_comp[comp->plane] = i; |
60 |
} |
61 |
} |
62 |
} |
63 |
|
64 |
/**
|
65 |
* Compute the size of an image line with format pix_fmt and width
|
66 |
* width for the plane plane.
|
67 |
*
|
68 |
* @return the computed size in bytes
|
69 |
*/
|
70 |
int av_get_image_linesize(enum PixelFormat pix_fmt, int width, int plane); |
71 |
|
72 |
/**
|
73 |
* Fill plane linesizes for an image with pixel format pix_fmt and
|
74 |
* width width.
|
75 |
*
|
76 |
* @param linesizes array to be filled with the linesize for each plane
|
77 |
* @return >= 0 in case of success, a negative error code otherwise
|
78 |
*/
|
79 |
int av_fill_image_linesizes(int linesizes[4], enum PixelFormat pix_fmt, int width); |
80 |
|
81 |
/**
|
82 |
* Fill plane data pointers for an image with pixel format pix_fmt and
|
83 |
* height height.
|
84 |
*
|
85 |
* @param data pointers array to be filled with the pointer for each image plane
|
86 |
* @param ptr the pointer to a buffer which will contain the image
|
87 |
* @param linesizes[4] the array containing the linesize for each
|
88 |
* plane, should be filled by av_fill_image_linesizes()
|
89 |
* @return the size in bytes required for the image buffer, a negative
|
90 |
* error code in case of failure
|
91 |
*/
|
92 |
int av_fill_image_pointers(uint8_t *data[4], enum PixelFormat pix_fmt, int height, |
93 |
uint8_t *ptr, const int linesizes[4]); |
94 |
|
95 |
/**
|
96 |
* Check if the given dimension of an image is valid, meaning that all
|
97 |
* bytes of the image can be addressed with a signed int.
|
98 |
*
|
99 |
* @param w the width of the picture
|
100 |
* @param h the height of the picture
|
101 |
* @param log_offset the offset to sum to the log level for logging with log_ctx
|
102 |
* @param log_ctx the parent logging context, it may be NULL
|
103 |
* @return >= 0 if valid, a negative error code otherwise
|
104 |
*/
|
105 |
int av_check_image_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx); |
106 |
|
107 |
#endif /* AVCORE_IMGUTILS_H */ |