Searched refs:linesizes (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dimgutils.h61 * Fill plane linesizes for an image with pixel format pix_fmt and
64 * @param linesizes array to be filled with the linesize for each plane
67 int av_image_fill_linesizes(int linesizes[4], enum PixelFormat pix_fmt, int width);
75 * @param linesizes the array containing the linesize for each
81 uint8_t *ptr, const int linesizes[4]);
85 * fill pointers and linesizes accordingly.
93 int av_image_alloc(uint8_t *pointers[4], int linesizes[4],
112 * @param dst_linesizes linesizes for the image in dst_data
113 * @param src_linesizes linesizes for the image in src_data
H A Dimgutils.c62 int av_image_fill_linesizes(int linesizes[4], enum PixelFormat pix_fmt, int width) argument
69 memset(linesizes, 0, 4*sizeof(linesizes[0]));
77 linesizes[0] = (width * (desc->comp[0].step_minus1+1) + 7) >> 3;
87 linesizes[i] = max_step[i] * shifted_w;
94 uint8_t *ptr, const int linesizes[4])
107 if (linesizes[0] > (INT_MAX - 1024) / height)
109 size[0] = linesizes[0] * height;
125 if (linesizes[i] > INT_MAX / h)
127 size[i] = h * linesizes[
93 av_image_fill_pointers(uint8_t *data[4], enum PixelFormat pix_fmt, int height, uint8_t *ptr, const int linesizes[4]) argument
176 av_image_alloc(uint8_t *pointers[4], int linesizes[4], int w, int h, enum PixelFormat pix_fmt, int align) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dimgutils.h62 * Fill plane linesizes for an image with pixel format pix_fmt and
65 * @param linesizes array to be filled with the linesize for each plane
68 int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width);
76 * @param linesizes the array containing the linesize for each
82 uint8_t *ptr, const int linesizes[4]);
86 * fill pointers and linesizes accordingly.
94 int av_image_alloc(uint8_t *pointers[4], int linesizes[4],
116 * @param dst_linesizes linesizes for the image in dst_data
117 * @param src_linesizes linesizes for the image in src_data
124 * Setup the data pointers and linesizes base
[all...]
H A Dimgutils.c88 int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width) argument
95 memset(linesizes, 0, 4*sizeof(linesizes[0]));
104 linesizes[i] = ret;
111 uint8_t *ptr, const int linesizes[4])
122 if (linesizes[0] > (INT_MAX - 1024) / height)
124 size[0] = linesizes[0] * height;
141 if (linesizes[i] > INT_MAX / h)
143 size[i] = h * linesizes[i];
192 int av_image_alloc(uint8_t *pointers[4], int linesizes[ argument
110 av_image_fill_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt, int height, uint8_t *ptr, const int linesizes[4]) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dimgconvert.c446 int i, j, nb_planes = 0, linesizes[4]; local
457 av_image_fill_linesizes(linesizes, pix_fmt, width);
464 memcpy(dest, s, linesizes[i]);
465 dest += linesizes[i];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/
H A Dswscale.c791 const int linesizes[4])
798 if (!data[plane] || !linesizes[plane])
790 check_image_pointers(const uint8_t * const data[4], enum AVPixelFormat pix_fmt, const int linesizes[4]) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/
H A Dswscale_unscaled.c887 const int linesizes[4])
894 if (!data[plane] || !linesizes[plane])
886 check_image_pointers(uint8_t *data[4], enum PixelFormat pix_fmt, const int linesizes[4]) argument

Completed in 85 milliseconds