Browse Source

libavutil/opencl: fixed uninitialized var warning

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
dsmudhar Michael Niedermayer 9 years ago
parent
commit
6b852a3fd9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/opencl.c

+ 1
- 1
libavutil/opencl.c View File

@@ -445,7 +445,7 @@ cl_program av_opencl_compile(const char *program_name, const char *build_opts)
int i;
cl_int status, build_status;
int kernel_code_idx = 0;
const char *kernel_source;
const char *kernel_source = NULL;
size_t kernel_code_len;
char* ptr = NULL;
cl_program program = NULL;


Loading…
Cancel
Save