Searched refs:CL_CREATE_BUFFER (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
D | vf_deshake_opencl.c | 1309 CL_CREATE_BUFFER(ctx, harris_buf, outlink->h * outlink->w * sizeof(float)); in deshake_opencl_init() 1310 CL_CREATE_BUFFER(ctx, refined_features, features_buf_size); in deshake_opencl_init() 1311 CL_CREATE_BUFFER(ctx, prev_refined_features, features_buf_size); in deshake_opencl_init() 1319 CL_CREATE_BUFFER(ctx, descriptors, descriptor_buf_size); in deshake_opencl_init() 1320 CL_CREATE_BUFFER(ctx, prev_descriptors, descriptor_buf_size); in deshake_opencl_init() 1321 CL_CREATE_BUFFER(ctx, matches, image_grid_32 * sizeof(MotionVector)); in deshake_opencl_init() 1322 CL_CREATE_BUFFER(ctx, matches_contig, MATCHES_CONTIG_SIZE * sizeof(MotionVector)); in deshake_opencl_init() 1323 CL_CREATE_BUFFER(ctx, transform_y, 9 * sizeof(float)); in deshake_opencl_init() 1324 CL_CREATE_BUFFER(ctx, transform_uv, 9 * sizeof(float)); in deshake_opencl_init() 1326 CL_CREATE_BUFFER(ctx, debug_matches, MATCHES_CONTIG_SIZE * sizeof(MotionVector)); in deshake_opencl_init() [all …]
|
D | opencl.h | 237 #define CL_CREATE_BUFFER(ctx, buffer_name, size) CL_CREATE_BUFFER_FLAGS(ctx, buffer_name, 0, size, … macro
|