mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
lavu: add calling convention for OpenCL callback.
This fix a build error on Windows: C2440: connot convert from 'void (__cdecl *) (...)' to 'void (__stdcall *)(...)'. Signed-off-by: Ruiling Song <ruiling.song@intel.com>
This commit is contained in:
parent
c8de4448bd
commit
e4006a474f
@ -141,8 +141,9 @@ typedef struct OpenCLFramesContext {
|
|||||||
} OpenCLFramesContext;
|
} OpenCLFramesContext;
|
||||||
|
|
||||||
|
|
||||||
static void opencl_error_callback(const char *errinfo,
|
static void CL_CALLBACK opencl_error_callback(const char *errinfo,
|
||||||
const void *private_info, size_t cb,
|
const void *private_info,
|
||||||
|
size_t cb,
|
||||||
void *user_data)
|
void *user_data)
|
||||||
{
|
{
|
||||||
AVHWDeviceContext *ctx = user_data;
|
AVHWDeviceContext *ctx = user_data;
|
||||||
|
Loading…
Reference in New Issue
Block a user