Home
last modified time | relevance | path

Searched refs:dst_linesize (Results 1 - 25 of 97) sorted by relevance

1234

/third_party/ffmpeg/libavfilter/
H A Dvsrc_mptestsrc.c106 static void idct(uint8_t *dst, int dst_linesize, int src[64]) in idct() argument
129 dst[dst_linesize*i + j] = av_clip_uint8(lrint(sum)); in idct()
134 static void draw_dc(uint8_t *dst, int dst_linesize, int color, int w, int h) in draw_dc() argument
140 dst[x + y*dst_linesize] = color; in draw_dc()
143 static void draw_basis(uint8_t *dst, int dst_linesize, int amp, int freq, int dc) in draw_basis() argument
151 idct(dst, dst_linesize, src); in draw_basis()
154 static void draw_cbp(uint8_t *dst[3], int dst_linesize[3], int cbp, int amp, int dc) in draw_cbp() argument
156 if (cbp&1) draw_basis(dst[0] , dst_linesize[0], amp, 1, dc); in draw_cbp()
157 if (cbp&2) draw_basis(dst[0]+8 , dst_linesize[0], amp, 1, dc); in draw_cbp()
158 if (cbp&4) draw_basis(dst[0]+ 8*dst_linesize[ in draw_cbp()
164 dc_test(uint8_t *dst, int dst_linesize, int w, int h, int off) dc_test() argument
177 freq_test(uint8_t *dst, int dst_linesize, int off) freq_test() argument
189 amp_test(uint8_t *dst, int dst_linesize, int off) amp_test() argument
201 cbp_test(uint8_t *dst[3], int dst_linesize[3], int off) cbp_test() argument
218 mv_test(uint8_t *dst, int dst_linesize, int off) mv_test() argument
230 ring1_test(uint8_t *dst, int dst_linesize, int off) ring1_test() argument
242 ring2_test(uint8_t *dst, int dst_linesize, int off) ring2_test() argument
[all...]
H A Dvf_deblock.c58 void (*deblockh)(uint8_t *dst, ptrdiff_t dst_linesize, int block,
60 void (*deblockv)(uint8_t *dst, ptrdiff_t dst_linesize, int block,
87 static void deblockh##name##_weak(uint8_t *dstp, ptrdiff_t dst_linesize, int block, \
94 dst_linesize /= ldiv; \
97 int delta = dst[x] - dst[x - dst_linesize]; \
101 FFABS(dst[x - 1 * dst_linesize] - dst[x - 2 * dst_linesize]) >= bth || \
102 FFABS(dst[x + 0 * dst_linesize] - dst[x + 1 * dst_linesize]) >= gth) \
105 A = dst[x - 2 * dst_linesize]; \
[all...]
H A Dvf_transpose.c75 uint8_t *dst, ptrdiff_t dst_linesize, in transpose_block_8_c()
79 for (y = 0; y < h; y++, dst += dst_linesize, src++) in transpose_block_8_c()
85 uint8_t *dst, ptrdiff_t dst_linesize) in transpose_8x8_8_c()
87 transpose_block_8_c(src, src_linesize, dst, dst_linesize, 8, 8); in transpose_8x8_8_c()
91 uint8_t *dst, ptrdiff_t dst_linesize, in transpose_block_16_c()
95 for (y = 0; y < h; y++, dst += dst_linesize, src += 2) in transpose_block_16_c()
101 uint8_t *dst, ptrdiff_t dst_linesize) in transpose_8x8_16_c()
103 transpose_block_16_c(src, src_linesize, dst, dst_linesize, 8, 8); in transpose_8x8_16_c()
107 uint8_t *dst, ptrdiff_t dst_linesize, in transpose_block_24_c()
111 for (y = 0; y < h; y++, dst += dst_linesize) { in transpose_block_24_c()
74 transpose_block_8_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize, int w, int h) transpose_block_8_c() argument
84 transpose_8x8_8_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize) transpose_8x8_8_c() argument
90 transpose_block_16_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize, int w, int h) transpose_block_16_c() argument
100 transpose_8x8_16_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize) transpose_8x8_16_c() argument
106 transpose_block_24_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize, int w, int h) transpose_block_24_c() argument
119 transpose_8x8_24_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize) transpose_8x8_24_c() argument
125 transpose_block_32_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize, int w, int h) transpose_block_32_c() argument
136 transpose_8x8_32_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize) transpose_8x8_32_c() argument
142 transpose_block_48_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize, int w, int h) transpose_block_48_c() argument
155 transpose_8x8_48_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize) transpose_8x8_48_c() argument
161 transpose_block_64_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize, int w, int h) transpose_block_64_c() argument
171 transpose_8x8_64_c(uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize) transpose_8x8_64_c() argument
[all...]
H A Dedge_common.c51 uint16_t *dst, int dst_linesize, in ff_sobel()
58 dst += dst_linesize; in ff_sobel()
81 uint8_t *dst, int dst_linesize, in ff_non_maximum_suppression()
94 dst += dst_linesize; in ff_non_maximum_suppression()
110 uint8_t *dst, int dst_linesize, in ff_double_threshold()
136 dst += dst_linesize; in ff_double_threshold()
143 uint8_t *dst, int dst_linesize, in ff_gaussian_blur()
148 memcpy(dst, src, w); dst += dst_linesize; src += src_linesize; in ff_gaussian_blur()
149 memcpy(dst, src, w); dst += dst_linesize; src += src_linesize; in ff_gaussian_blur()
176 dst += dst_linesize; in ff_gaussian_blur()
50 ff_sobel(int w, int h, uint16_t *dst, int dst_linesize, int8_t *dir, int dir_linesize, const uint8_t *src, int src_linesize) ff_sobel() argument
80 ff_non_maximum_suppression(int w, int h, uint8_t *dst, int dst_linesize, const int8_t *dir, int dir_linesize, const uint16_t *src, int src_linesize) ff_non_maximum_suppression() argument
109 ff_double_threshold(int low, int high, int w, int h, uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize) ff_double_threshold() argument
142 ff_gaussian_blur(int w, int h, uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize) ff_gaussian_blur() argument
[all...]
H A Dvf_dctdnoiz.c64 float *dst, int dst_linesize,
66 void (*color_decorrelation)(float **dst, int dst_linesize,
69 void (*color_correlation)(uint8_t **dst, int dst_linesize,
355 float *dst, int dst_linesize, \
381 idct##bsize##_1d(dst, tmp_block1, dst_linesize, 1, bsize, 1, 1); \
386 float *dst, int dst_linesize, int thread_id) \
388 filter_freq_##bsize(src, src_linesize, dst, dst_linesize, NULL, NULL, s->th); \
393 float *dst, int dst_linesize, int thread_id) \
395 filter_freq_##bsize(src, src_linesize, dst, dst_linesize, \
411 static av_always_inline void color_decorrelation(float **dst, int dst_linesize, in color_decorrelation() argument
436 color_correlation(uint8_t **dst, int dst_linesize, float **src, int src_linesize, int w, int h, int r, int g, int b) color_correlation() argument
479 color_decorrelation_gbrp(float **dst, int dst_linesize, const uint8_t **src, int src_linesize, int w, int h) color_decorrelation_gbrp() argument
506 color_correlation_gbrp(uint8_t **dst, int dst_linesize, float **src, int src_linesize, int w, int h) color_correlation_gbrp() argument
681 const int dst_linesize = s->p_linesize; filter_slice() local
754 const int dst_linesize = out->linesize[0]; filter_frame() local
[all...]
H A Dvf_smartblur.c169 static void blur(uint8_t *dst, const int dst_linesize, in blur() argument
181 int dst_linesize_array[4] = {dst_linesize}; in blur()
190 filtered = dst[x + y * dst_linesize]; in blur()
195 dst[x + y * dst_linesize] = orig; in blur()
198 dst[x + y * dst_linesize] = orig - threshold; in blur()
201 dst[x + y * dst_linesize] = orig; in blur()
204 dst[x + y * dst_linesize] = orig + threshold; in blur()
212 filtered = dst[x + y * dst_linesize]; in blur()
217 dst[x + y * dst_linesize] = orig; in blur()
220 dst[x + y * dst_linesize] in blur()
[all...]
H A Dvf_kerndeint.c126 int src_linesize, psrc_linesize, dst_linesize, bwidth; in filter_frame() local
154 dst_linesize = outpic->linesize[plane]; in filter_frame()
156 dstp = dstp_saved + (1 - order) * dst_linesize; in filter_frame()
161 dstp += 2 * dst_linesize; in filter_frame()
165 memcpy(dstp_saved + order * dst_linesize, srcp_saved + (1 - order) * src_linesize, bwidth); in filter_frame()
166 memcpy(dstp_saved + (2 + order ) * dst_linesize, srcp_saved + (3 - order) * src_linesize, bwidth); in filter_frame()
167 memcpy(dstp_saved + (h - 2 + order) * dst_linesize, srcp_saved + (h - 1 - order) * src_linesize, bwidth); in filter_frame()
168 memcpy(dstp_saved + (h - 4 + order) * dst_linesize, srcp_saved + (h - 3 - order) * src_linesize, bwidth); in filter_frame()
191 dstp = dstp_saved + 5 * dst_linesize - (1 - order) * dst_linesize; in filter_frame()
[all...]
H A Dedge_common.h45 * @param dst_linesize linesizes for the magnitude image
52 uint16_t *dst, int dst_linesize,
64 * @param dst_linesize linesizes for the magnitude image
71 uint8_t *dst, int dst_linesize,
84 * @param dst_linesize linesizes for the destination image
89 uint8_t *dst, int dst_linesize,
99 * @param dst_linesize linesizes for the destination image
104 uint8_t *dst, int dst_linesize,
H A Dvf_varblur.c49 int dst_linesize);
101 int dst_linesize) \
107 dst_linesize /= (depth / 2); \
108 dst += dst_linesize; \
115 dst[x] = sum + dst[x - dst_linesize]; \
119 dst += dst_linesize; \
148 const int dst_linesize = ddst_linesize / (bits / 8); \
152 type *dst = (type *)ddst + slice_start * dst_linesize; \
191 dst += dst_linesize; \
215 const int dst_linesize in blur_planes() local
[all...]
H A Ddrawutils.h101 uint8_t *dst[], int dst_linesize[],
113 uint8_t *dst[], int dst_linesize[],
120 uint8_t *dst[], int dst_linesize[],
130 * @param dst_linesize line stride of the destination
143 uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h,
H A Ddrawutils.c213 uint8_t *dst[], int dst_linesize[], in ff_copy_rectangle2()
223 q = pointer_at(draw, dst, dst_linesize, plane, dst_x, dst_y); in ff_copy_rectangle2()
229 q += dst_linesize[plane]; in ff_copy_rectangle2()
235 uint8_t *dst[], int dst_linesize[], in ff_fill_rectangle()
243 p0 = pointer_at(draw, dst, dst_linesize, plane, dst_x, dst_y); in ff_fill_rectangle()
262 p = p0 + dst_linesize[plane]; in ff_fill_rectangle()
265 p += dst_linesize[plane]; in ff_fill_rectangle()
357 uint8_t *dst[], int dst_linesize[], in ff_blend_rectangle()
383 p0 = pointer_at(draw, dst, dst_linesize, plane, x0, y0); in ff_blend_rectangle()
408 p += dst_linesize[plan in ff_blend_rectangle()
212 ff_copy_rectangle2(FFDrawContext *draw, uint8_t *dst[], int dst_linesize[], uint8_t *src[], int src_linesize[], int dst_x, int dst_y, int src_x, int src_y, int w, int h) ff_copy_rectangle2() argument
234 ff_fill_rectangle(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_x, int dst_y, int w, int h) ff_fill_rectangle() argument
356 ff_blend_rectangle(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, int x0, int y0, int w, int h) ff_blend_rectangle() argument
537 ff_blend_mask(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, const uint8_t *mask, int mask_linesize, int mask_w, int mask_h, int l2depth, unsigned endianness, int x0, int y0) ff_blend_mask() argument
[all...]
H A Dlswsutils.c22 int ff_scale_image(uint8_t *dst_data[4], int dst_linesize[4], in ff_scale_image() argument
42 if ((ret = av_image_alloc(dst_data, dst_linesize, dst_w, dst_h, dst_pix_fmt, 16)) < 0) in ff_scale_image()
45 sws_scale(sws_ctx, (const uint8_t * const*)src_data, src_linesize, 0, src_h, dst_data, dst_linesize); in ff_scale_image()
H A Dvf_hue.c282 uint8_t *ldst, const int dst_linesize, in apply_luma_lut()
293 ldst += dst_linesize; in apply_luma_lut()
298 uint16_t *ldst, const int dst_linesize, in apply_luma_lut10()
309 ldst += dst_linesize; in apply_luma_lut10()
314 uint8_t *udst, uint8_t *vdst, const int dst_linesize, in apply_lut()
331 udst += dst_linesize; in apply_lut()
332 vdst += dst_linesize; in apply_lut()
337 uint16_t *udst, uint16_t *vdst, const int dst_linesize, in apply_lut10()
354 udst += dst_linesize; in apply_lut10()
355 vdst += dst_linesize; in apply_lut10()
281 apply_luma_lut(HueContext *s, uint8_t *ldst, const int dst_linesize, uint8_t *lsrc, const int src_linesize, int w, int h) apply_luma_lut() argument
297 apply_luma_lut10(HueContext *s, uint16_t *ldst, const int dst_linesize, uint16_t *lsrc, const int src_linesize, int w, int h) apply_luma_lut10() argument
313 apply_lut(HueContext *s, uint8_t *udst, uint8_t *vdst, const int dst_linesize, uint8_t *usrc, uint8_t *vsrc, const int src_linesize, int w, int h) apply_lut() argument
336 apply_lut10(HueContext *s, uint16_t *udst, uint16_t *vdst, const int dst_linesize, uint16_t *usrc, uint16_t *vsrc, const int src_linesize, int w, int h) apply_lut10() argument
[all...]
H A Dvf_epx.c56 const int dst_linesize = out->linesize[p] / 4; in epx2_slice() local
68 dst_line[0] = dst + dst_linesize*2*y; in epx2_slice()
69 dst_line[1] = dst + dst_linesize*(2*y+1); in epx2_slice()
123 const int dst_linesize = out->linesize[p] / 4; in epx3_slice() local
135 dst_line[0] = dst + dst_linesize*3*y; in epx3_slice()
136 dst_line[1] = dst + dst_linesize*(3*y+1); in epx3_slice()
137 dst_line[2] = dst + dst_linesize*(3*y+2); in epx3_slice()
H A Dvf_il.c109 int dst_linesize, int src_linesize, in interleave()
120 memcpy(dst + dst_linesize * y , src + src_linesize * (y * 2 + a), w); in interleave()
121 memcpy(dst + dst_linesize * (y + m), src + src_linesize * (y * 2 + b), w); in interleave()
126 memcpy(dst + dst_linesize * y * 2 , src + src_linesize * (y * 2 + a), w); in interleave()
127 memcpy(dst + dst_linesize * (y * 2 + 1), src + src_linesize * (y * 2 + b), w); in interleave()
132 memcpy(dst + dst_linesize * (y * 2 + a), src + src_linesize * y , w); in interleave()
133 memcpy(dst + dst_linesize * (y * 2 + b), src + src_linesize * (y + m), w); in interleave()
108 interleave(uint8_t *dst, uint8_t *src, int w, int h, int dst_linesize, int src_linesize, enum FilterMode mode, int swap) interleave() argument
H A Dvf_waveform.c400 const int dst_linesize = out->linesize[component] / 2; in envelope_instant16() local
413 dst = (uint16_t *)out->data[component] + y * dst_linesize + x; in envelope_instant16()
420 dst = (uint16_t *)out->data[component] + y * dst_linesize + x; in envelope_instant16()
429 dst = (uint16_t *)out->data[component] + y * dst_linesize; in envelope_instant16()
448 const int dst_linesize = out->linesize[component]; in envelope_instant() local
460 dst = out->data[component] + y * dst_linesize + x; in envelope_instant()
467 dst = out->data[component] + y * dst_linesize + x; in envelope_instant()
476 dst = out->data[component] + y * dst_linesize; in envelope_instant()
495 const int dst_linesize = out->linesize[component] / 2; in envelope_peak16() local
510 dst = (uint16_t *)out->data[component] + y * dst_linesize in envelope_peak16()
565 const int dst_linesize = out->linesize[component]; envelope_peak() local
698 const int dst_linesize = out->linesize[dplane] / 2; lowpass16() local
836 const int dst_linesize = out->linesize[dplane]; lowpass() local
1539 const int dst_linesize = out->linesize[plane] / 2; chroma16() local
1651 const int dst_linesize = out->linesize[plane]; chroma() local
[all...]
H A Dvf_spp.c165 int dst_linesize, int src_linesize, in store_slice_c()
175 dst[x + y*dst_linesize + pos] = temp; \ in store_slice_c()
195 int dst_linesize, int src_linesize, in store_slice16_c()
206 dst[x + y*dst_linesize + pos] = temp; \ in store_slice16_c()
242 int dst_linesize, int src_linesize, int width, int height, in filter()
299 p->store_slice(dst + (y - 8) * dst_linesize, p->temp + 8 + y*linesize, in filter()
300 dst_linesize, linesize, width, in filter()
304 store_slice16_c((uint16_t*)(dst + (y - 8) * dst_linesize), p->temp + 8 + y*linesize, in filter()
305 dst_linesize/2, linesize, width, in filter()
164 store_slice_c(uint8_t *dst, const int16_t *src, int dst_linesize, int src_linesize, int width, int height, int log2_scale, const uint8_t dither[8][8]) store_slice_c() argument
194 store_slice16_c(uint16_t *dst, const int16_t *src, int dst_linesize, int src_linesize, int width, int height, int log2_scale, const uint8_t dither[8][8], int depth) store_slice16_c() argument
241 filter(SPPContext *p, uint8_t *dst, uint8_t *src, int dst_linesize, int src_linesize, int width, int height, const uint8_t *qp_table, int qp_stride, int is_luma, int depth) filter() argument
H A Dvf_removelogo.c248 uint8_t *dst_data, int dst_linesize, in generate_half_size_image()
260 dst_data[(y * dst_linesize) + x] = in generate_half_size_image()
265 dst_data[(y * dst_linesize) + x] = FFMIN(1, dst_data[(y * dst_linesize) + x]); in generate_half_size_image()
269 convert_mask_to_strength_mask(dst_data, dst_linesize, in generate_half_size_image()
454 uint8_t *dst_data, int dst_linesize, in blur_image()
464 av_image_copy_plane(dst_data, dst_linesize, src_data, src_linesize, w, h); in blur_image()
468 dst_line = dst_data + dst_linesize * y; in blur_image()
475 dst_data, dst_linesize, in blur_image()
247 generate_half_size_image(const uint8_t *src_data, int src_linesize, uint8_t *dst_data, int dst_linesize, int src_w, int src_h, int *max_mask_size) generate_half_size_image() argument
452 blur_image(int ***mask, const uint8_t *src_data, int src_linesize, uint8_t *dst_data, int dst_linesize, const uint8_t *mask_data, int mask_linesize, int w, int h, int direct, FFBoundingBox *bbox) blur_image() argument
H A Dvf_deband.c141 const int dst_linesize = out->linesize[p]; in deband_8_c() local
165 dst_ptr[y * dst_linesize + x] = diff < thr ? avg : src0; in deband_8_c()
167 dst_ptr[y * dst_linesize + x] = (FFABS(src0 - ref0) < thr) && in deband_8_c()
227 const int dst_linesize = out->linesize[p]; in deband_8_coupling_c() local
229 out->data[p][y * dst_linesize + x] = avg[p]; in deband_8_coupling_c()
233 const int dst_linesize = out->linesize[p]; in deband_8_coupling_c() local
235 out->data[p][y * dst_linesize + x] = src[p]; in deband_8_coupling_c()
292 const int dst_linesize = out->linesize[p] / 2; in deband_16_coupling_c() local
293 uint16_t *dst = (uint16_t *)out->data[p] + y * dst_linesize + x; in deband_16_coupling_c()
299 const int dst_linesize in deband_16_coupling_c() local
322 const int dst_linesize = out->linesize[p] / 2; deband_16_c() local
[all...]
H A Dtranspose.h42 uint8_t *dst, ptrdiff_t dst_linesize);
44 uint8_t *dst, ptrdiff_t dst_linesize,
/third_party/ffmpeg/libavutil/x86/
H A Dimgutils_init.c29 void ff_image_copy_plane_uc_from_sse4(uint8_t *dst, ptrdiff_t dst_linesize,
33 int ff_image_copy_plane_uc_from_x86(uint8_t *dst, ptrdiff_t dst_linesize, in ff_image_copy_plane_uc_from_x86() argument
41 bw_aligned <= dst_linesize && bw_aligned <= src_linesize) in ff_image_copy_plane_uc_from_x86()
42 ff_image_copy_plane_uc_from_sse4(dst, dst_linesize, src, src_linesize, in ff_image_copy_plane_uc_from_x86()
/third_party/ffmpeg/libavutil/
H A Dimgutils.c344 static void image_copy_plane(uint8_t *dst, ptrdiff_t dst_linesize, in image_copy_plane() argument
351 av_assert0(FFABS(dst_linesize) >= bytewidth); in image_copy_plane()
354 dst += dst_linesize; in image_copy_plane()
359 void av_image_copy_plane_uc_from(uint8_t *dst, ptrdiff_t dst_linesize, in av_image_copy_plane_uc_from() argument
366 ret = ff_image_copy_plane_uc_from_x86(dst, dst_linesize, src, src_linesize, in av_image_copy_plane_uc_from()
371 image_copy_plane(dst, dst_linesize, src, src_linesize, bytewidth, height); in av_image_copy_plane_uc_from()
374 void av_image_copy_plane(uint8_t *dst, int dst_linesize, in av_image_copy_plane() argument
378 image_copy_plane(dst, dst_linesize, src, src_linesize, bytewidth, height); in av_image_copy_plane()
446 int av_image_fill_arrays(uint8_t *dst_data[4], int dst_linesize[4], in av_image_fill_arrays() argument
456 ret = av_image_fill_linesizes(dst_linesize, pix_fm in av_image_fill_arrays()
582 av_image_fill_black(uint8_t *dst_data[4], const ptrdiff_t dst_linesize[4], enum AVPixelFormat pix_fmt, enum AVColorRange range, int width, int height) av_image_fill_black() argument
[all...]
H A Dimgutils.h119 * bytewidth must be contained by both absolute values of dst_linesize
122 * @param dst_linesize linesize for the image plane in dst
125 void av_image_copy_plane(uint8_t *dst, int dst_linesize,
135 * bytewidth must be contained by both absolute values of dst_linesize
143 void av_image_copy_plane_uc_from(uint8_t *dst, ptrdiff_t dst_linesize,
188 * To allocate the buffer and fill in the dst_data and dst_linesize in
192 * @param dst_linesize linesizes for the image in dst_data to be filled in
201 int av_image_fill_arrays(uint8_t *dst_data[4], int dst_linesize[4],
295 * @param dst_linesize linesizes for the destination image
302 int av_image_fill_black(uint8_t *dst_data[4], const ptrdiff_t dst_linesize[
[all...]
/third_party/ffmpeg/doc/examples/
H A Dresampling_audio.c87 int src_linesize, dst_linesize; in main() local
156 ret = av_samples_alloc_array_and_samples(&dst_data, &dst_linesize, dst_nb_channels, in main()
173 ret = av_samples_alloc(dst_data, &dst_linesize, dst_nb_channels, in main()
186 dst_bufsize = av_samples_get_buffer_size(&dst_linesize, dst_nb_channels, in main()
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_transpose_init.c30 ptrdiff_t dst_linesize);
35 ptrdiff_t dst_linesize);

Completed in 19 milliseconds

1234