FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
cmdutils_opencl.c File Reference
#include "libavutil/opt.h"
#include "libavutil/time.h"
#include "libavutil/log.h"
#include "libavutil/opencl.h"
#include "libavutil/avstring.h"
#include "cmdutils.h"

Go to the source code of this file.

Data Structures

struct  OpenCLDeviceBenchmark
 

Macros

#define OCLCHECK(method,...)
 
#define CREATEBUF(out, flags, size)
 
#define OPENCL_NB_ITER   5
 

Functions

static void fill_rand_int (int *data, int n)
 
static int64_t run_opencl_bench (AVOpenCLExternalEnv *ext_opencl_env)
 
static int compare_ocl_device_desc (const void *a, const void *b)
 
int opt_opencl_bench (void *optctx, const char *opt, const char *arg)
 
int opt_opencl (void *optctx, const char *opt, const char *arg)
 

Variables

const char * ocl_bench_source
 

Macro Definition Documentation

#define OCLCHECK (   method,
  ... 
)
Value:
do { \
status = method(__VA_ARGS__); \
if (status != CL_SUCCESS) { \
av_log(NULL, AV_LOG_ERROR, # method " error '%s'\n", \
av_opencl_errstr(status)); \
goto end; \
} \
} while (0)
#define NULL
Definition: coverity.c:32
const char * av_opencl_errstr(cl_int status)
Get OpenCL error string.
Definition: opencl.c:165
if()
Definition: avfilter.c:975
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:67
#define av_log(a,...)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
ret
Definition: avfilter.c:974
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:57

Definition at line 95 of file cmdutils_opencl.c.

Referenced by run_opencl_bench().

#define CREATEBUF (   out,
  flags,
  size 
)
Value:
do { \
out = clCreateBuffer(ext_opencl_env->context, flags, size, NULL, &status); \
if (status != CL_SUCCESS) { \
av_log(NULL, AV_LOG_ERROR, "Could not create OpenCL buffer\n"); \
goto end; \
} \
} while (0)
#define NULL
Definition: coverity.c:32
if()
Definition: avfilter.c:975
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:67
ptrdiff_t size
Definition: opengl_enc.c:101
#define av_log(a,...)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
ret
Definition: avfilter.c:974
static int flags
Definition: cpu.c:47
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:57

Definition at line 106 of file cmdutils_opencl.c.

Referenced by run_opencl_bench().

#define OPENCL_NB_ITER   5

Definition at line 124 of file cmdutils_opencl.c.

Referenced by run_opencl_bench().

Function Documentation

static void fill_rand_int ( int *  data,
int  n 
)
static

Definition at line 116 of file cmdutils_opencl.c.

Referenced by run_opencl_bench().

static int64_t run_opencl_bench ( AVOpenCLExternalEnv ext_opencl_env)
static

Definition at line 125 of file cmdutils_opencl.c.

Referenced by opt_opencl_bench().

static int compare_ocl_device_desc ( const void a,
const void b 
)
static

Definition at line 207 of file cmdutils_opencl.c.

Referenced by opt_opencl_bench().

int opt_opencl_bench ( void optctx,
const char *  opt,
const char *  arg 
)

Definition at line 212 of file cmdutils_opencl.c.

int opt_opencl ( void optctx,
const char *  opt,
const char *  arg 
)

Definition at line 260 of file cmdutils_opencl.c.

Variable Documentation

const char* ocl_bench_source

Definition at line 35 of file cmdutils_opencl.c.

Referenced by run_opencl_bench().