77 const char *kernel_name;
80 if (main_format != xfade_format) {
87 main_planes =
FFMAX(main_planes,
90 ctx->nb_planes = main_planes;
100 ctx->command_queue = clCreateCommandQueue(
ctx->ocf.hwctx->context,
101 ctx->ocf.hwctx->device_id,
104 "command queue %d.\n", cle);
106 switch (
ctx->transition) {
107 case CUSTOM: kernel_name =
ctx->kernel_name;
break;
108 case FADE: kernel_name =
"fade";
break;
109 case WIPELEFT: kernel_name =
"wipeleft";
break;
110 case WIPERIGHT: kernel_name =
"wiperight";
break;
111 case WIPEUP: kernel_name =
"wipeup";
break;
112 case WIPEDOWN: kernel_name =
"wipedown";
break;
113 case SLIDELEFT: kernel_name =
"slideleft";
break;
114 case SLIDERIGHT: kernel_name =
"slideright";
break;
115 case SLIDEUP: kernel_name =
"slideup";
break;
116 case SLIDEDOWN: kernel_name =
"slidedown";
break;
122 ctx->kernel = clCreateKernel(
ctx->ocf.program, kernel_name, &cle);
125 ctx->initialised = 1;
130 if (
ctx->command_queue)
131 clReleaseCommandQueue(
ctx->command_queue);
133 clReleaseKernel(
ctx->kernel);
143 cl_float progress =
av_clipf(1.f - ((cl_float)(
ctx->pts -
ctx->first_pts -
ctx->offset_pts) /
ctx->duration_pts), 0.f, 1.f);
144 size_t global_work[2];
148 if (!
ctx->initialised) {
166 for (plane = 0; plane <
ctx->nb_planes; plane++) {
170 mem = (cl_mem)output->
data[plane];
174 mem = (cl_mem)
ctx->xf[0]->data[plane];
178 mem = (cl_mem)
ctx->xf[1]->data[plane];
190 cle = clEnqueueNDRangeKernel(
ctx->command_queue,
ctx->kernel, 2,
NULL,
193 "for plane %d: %d.\n", plane, cle);
196 cle = clFinish(
ctx->command_queue);
226 if (inlink0->
w != inlink1->
w || inlink0->
h != inlink1->
h) {
228 "(size %dx%d) do not match the corresponding "
229 "second input link %s parameters (size %dx%d)\n",
238 "(%d/%d) do not match the corresponding "
239 "second input link %s timebase (%d/%d)\n",
269 if (
ctx->xfade_is_over) {
273 }
else if (ret > 0) {
291 ctx->first_pts =
ctx->xf[0]->pts;
293 ctx->pts =
ctx->xf[0]->pts;
294 if (
ctx->first_pts +
ctx->offset_pts >
ctx->xf[0]->pts) {
296 ctx->need_second = 0;
303 ctx->need_second = 1;
317 ctx->last_pts =
ctx->xf[1]->pts;
318 ctx->pts =
ctx->xf[0]->pts;
319 if (
ctx->xf[0]->pts - (
ctx->first_pts +
ctx->offset_pts) >
ctx->duration_pts)
320 ctx->xfade_is_over = 1;
336 ctx->xfade_is_over = 1;
341 if (!
ctx->eof[0] && !
ctx->xf[0])
343 if (!
ctx->eof[1] && (
ctx->need_second ||
ctx->eof[0]))
345 if (
ctx->eof[0] &&
ctx->eof[1] && (
361 cle = clReleaseKernel(
ctx->kernel);
362 if (cle != CL_SUCCESS)
364 "kernel: %d.\n", cle);
367 if (
ctx->command_queue) {
368 cle = clReleaseCommandQueue(
ctx->command_queue);
369 if (cle != CL_SUCCESS)
371 "command queue: %d.\n", cle);
381 return s->xfade_is_over || !
s->need_second ?
386#define OFFSET(x) offsetof(XFadeOpenCLContext, x)
387#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
434 .p.name =
"xfade_opencl",
436 .p.priv_class = &xfade_opencl_class,
const FFFilter ff_vf_xfade_opencl
static AVFormatContext * ctx
static AVFrame * get_video_buffer(AVFilterLink *inlink, int w, int h)
int ff_outlink_get_status(AVFilterLink *link)
Get the status on an output link.
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
int ff_outlink_frame_wanted(AVFilterLink *link)
Test if a frame is wanted on an output link.
size_t ff_inlink_queued_frames(AVFilterLink *link)
Get the number of frames available on the link.
AVFrame * ff_inlink_peek_frame(AVFilterLink *link, size_t idx)
Access a frame in the link fifo without consuming it.
void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
Mark a filter ready and schedule it for activation.
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
void ff_inlink_request_frame(AVFilterLink *link)
Mark that a frame is wanted on the link.
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
int(* init)(AVBSFContext *ctx)
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
@ AV_OPT_TYPE_DURATION
Underlying C type is int64_t.
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
#define AVFILTER_FLAG_HWDEVICE
The filter can create hardware frames using AVFilterContext.hw_device_ctx.
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
#define AVERROR_EOF
End of file.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
#define AV_NOPTS_VALUE
Undefined timestamp value.
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
#define FFERROR_NOT_READY
Filters implementation helper functions and internal structures.
#define FF_FILTER_FORWARD_STATUS_BACK_ALL(outlink, filter)
Forward the status on an output link to all input links.
static FilterLink * ff_filter_link(AVFilterLink *link)
#define FILTER_SINGLE_PIXFMT(pix_fmt_)
#define AVFILTER_DEFINE_CLASS(fname)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
void ff_opencl_filter_uninit(AVFilterContext *avctx)
Uninitialise an OpenCL filter context.
int ff_opencl_filter_load_program(AVFilterContext *avctx, const char **program_source_array, int nb_strings)
Load a new OpenCL program from strings in memory.
int ff_opencl_filter_config_input(AVFilterLink *inlink)
Check that the input link contains a suitable hardware frames context and extract the device from it.
int ff_opencl_filter_init(AVFilterContext *avctx)
Initialise an OpenCL filter context.
int ff_opencl_filter_work_size_from_image(AVFilterContext *avctx, size_t *work_size, AVFrame *frame, int plane, int block_alignment)
Find the work size needed needed for a given plane of an image.
int ff_opencl_filter_config_output(AVFilterLink *outlink)
Create a suitable hardware frames context for the output.
int ff_opencl_filter_load_program_from_file(AVFilterContext *avctx, const char *filename)
Load a new OpenCL program from a file.
#define CL_SET_KERNEL_ARG(kernel, arg_num, type, arg)
set argument to specific Kernel.
#define CL_FAIL_ON_ERROR(errcode,...)
A helper macro to handle OpenCL errors.
const char * ff_source_xfade_cl
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
AVPixelFormat
Pixel format.
@ AV_PIX_FMT_OPENCL
Hardware surfaces for OpenCL.
int plane
Which of the 4 planes contains the component.
AVFilterLink ** inputs
array of pointers to input links
AVFilterPad * input_pads
array of input pads
void * priv
private data for use by the filter
AVFilterLink ** outputs
array of pointers to output links
A link between two filters.
int w
agreed upon image width
int h
agreed upon image height
AVFilterContext * src
source filter
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
AVRational sample_aspect_ratio
agreed upon sample aspect ratio
AVFilterContext * dst
dest filter
A filter pad used for either input or output.
const char * name
Pad name.
This structure describes decoded (raw) audio or video data.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
This struct describes a set or pool of "hardware" frames (i.e.
enum AVPixelFormat sw_format
The pixel format identifying the actual data layout of the hardware frames.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
uint8_t nb_components
The number of components each pixel has, (1-4)
Link properties exposed to filter code, but not external callers.
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable.
cl_command_queue command_queue
static const AVOption xfade_opencl_options[]
static int xfade_frame(AVFilterContext *avctx, AVFrame *a, AVFrame *b)
static int xfade_opencl_config_output(AVFilterLink *outlink)
static AVFrame * get_video_buffer(AVFilterLink *inlink, int w, int h)
static const AVFilterPad xfade_opencl_inputs[]
static int xfade_opencl_load(AVFilterContext *avctx, enum AVPixelFormat main_format, enum AVPixelFormat xfade_format)
static const AVFilterPad xfade_opencl_outputs[]
static int xfade_opencl_activate(AVFilterContext *avctx)
static av_cold void xfade_opencl_uninit(AVFilterContext *avctx)
AVFrame * ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
AVFrame * ff_default_get_video_buffer(AVFilterLink *link, int w, int h)