Home
last modified time | relevance | path

Searched refs:entrypoints (Results 1 – 17 of 17) sorted by relevance

/hardware/intel/common/libva/test/basic/
Dtest_03.c44 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); in test() local
45 ASSERT(entrypoints); in test()
49 memset(entrypoints, 0xff, max_entrypoints * sizeof(VAEntrypoint)); in test()
50 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
57 status(" entrypoint %d [%s]\n", entrypoints[j], entrypoint2string(entrypoints[j])); in test()
61 free(entrypoints); in test()
Dtest_06.c30 VAEntrypoint *entrypoints; variable
46 entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); in pre()
47 ASSERT(entrypoints); in pre()
56 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in pre()
61 …va_status = vaCreateConfig(va_dpy, profiles[i], entrypoints[j], NULL, 0, &(configs[config_count])); in pre()
83 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
91 …ryConfigAttributes for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[j])); in test()
98 ASSERT( entrypoint == entrypoints[j] ); in test()
121 free(entrypoints); in post()
Dtest_05.c43 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); in test() local
44 ASSERT(entrypoints); in test()
50 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
55 …us("vaCreateConfig for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[j])); in test()
56 …va_status = vaCreateConfig(va_dpy, profiles[i], entrypoints[j], NULL, 0, &(configs[config_count])); in test()
71 free(entrypoints); in test()
Dtest_04.c52 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); in test() local
53 ASSERT(entrypoints); in test()
60 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
66 …etConfigAttributes for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[j])); in test()
67 … va_status = vaGetConfigAttributes(va_dpy, profiles[i], entrypoints[j], attrib_list, num_attribs); in test()
78 free(entrypoints); in test()
Dtest_09.c43 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); in test() local
44 ASSERT(entrypoints); in test()
51 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
56 …us("vaCreateConfig for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[j])); in test()
57 …va_status = vaCreateConfig(va_dpy, profiles[i], entrypoints[j], NULL, 0, &(configs[config_count])); in test()
103 free(entrypoints); in test()
Dtest_vaSurfaceAttrib.c37 VAEntrypoint entrypoints[5]; in test() local
57 …va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileH264Baseline, entrypoints, &num_entrypoints); in test()
61 if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice) in test()
Dtestplan.txt15 - Get Config attributes for all profiles / entrypoints
/hardware/intel/common/libva/test/vainfo/
Dvainfo.c94 VAEntrypoint entrypoint, entrypoints[10]; in main() local
136 va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints, in main()
145 printf(" %-32s: %s\n", profile_str, entrypoint_string(entrypoints[entrypoint])); in main()
/hardware/intel/common/libva/test/decode/
Dmpeg2vldemo.cpp141 VAEntrypoint entrypoints[5]; in main() local
162 va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileMPEG2Main, entrypoints, in main()
167 if (entrypoints[vld_entrypoint] == VAEntrypointVLD) in main()
Dtinyjpeg.c563 VAEntrypoint entrypoints[5]; in tinyjpeg_decode() local
591 va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileJPEGBaseline, entrypoints, in tinyjpeg_decode()
596 if (entrypoints[vld_entrypoint] == VAEntrypointVLD) in tinyjpeg_decode()
/hardware/intel/common/libva/test/transcode/
Dmpeg2transcode.cpp2002 VAEntrypoint entrypoints[5]; in create_encode_pipe() local
2015 vaQueryConfigEntrypoints(va_dpy, avcenc_context.profile, entrypoints, in create_encode_pipe()
2019 if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice) in create_encode_pipe()
3085 VAEntrypoint entrypoints[5]; in zoom_out_surface() local
3101 entrypoints, in zoom_out_surface()
3106 if (entrypoints[proc_entrypoint] == VAEntrypointVideoProc) in zoom_out_surface()
3292 VAEntrypoint entrypoints[5]; in main() local
3325 va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileMPEG2Simple, entrypoints, in main()
3330 if (entrypoints[vld_entrypoint] == VAEntrypointVLD) in main()
/hardware/intel/common/utils/ISV/base/
Disv_worker.cpp75 VAEntrypoint * entrypoints = (VAEntrypoint *)malloc(num_entrypoints * sizeof(VAEntrypoint)); in isSupport() local
76 if (entrypoints == NULL) { in isSupport()
82 …VAStatus vaStatus = vaQueryConfigEntrypoints(mVADisplay, VAProfileNone, entrypoints, &num_entrypoi… in isSupport()
88 support = entrypoints[i] == VAEntrypointVideoProc; in isSupport()
90 free(entrypoints); in isSupport()
91 entrypoints = NULL; in isSupport()
/hardware/intel/common/libva/test/encode/
Dh264encode.c920 VAEntrypoint *entrypoints; in init_va() local
932 entrypoints = malloc(num_entrypoints * sizeof(*entrypoints)); in init_va()
933 if (!entrypoints) { in init_va()
944 vaQueryConfigEntrypoints(va_dpy, h264_profile, entrypoints, &num_entrypoints); in init_va()
946 if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice) { in init_va()
1111 free(entrypoints); in init_va()
Davcenc.c158 VAEntrypoint entrypoints[5]; in create_encode_pipe() local
168 vaQueryConfigEntrypoints(va_dpy, avcenc_context.profile, entrypoints, in create_encode_pipe()
172 if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice) in create_encode_pipe()
/hardware/intel/common/libva/test/videoprocess/
Dvideoprocess.cpp823 VAEntrypoint entrypoints[5]; in vpp_context_create() local
828 entrypoints, in vpp_context_create()
833 if (entrypoints[i] == VAEntrypointVideoProc) in vpp_context_create()
/hardware/intel/common/libva/va/
Dva.c297 CHECK_MAXIMUM(vaStatus, ctx, entrypoints); in va_openDriver()
580 VAEntrypoint *entrypoints, /* out */ in vaQueryConfigEntrypoints() argument
588 return ctx->vtable->vaQueryConfigEntrypoints ( ctx, profile, entrypoints, num_entrypoints); in vaQueryConfigEntrypoints()
/hardware/intel/img/psb_video/src/
Dpsb_drv_video.c211 int entrypoints = 0; in psb_QueryConfigEntrypoints() local
222 entrypoints++; in psb_QueryConfigEntrypoints()
228 entrypoints++; in psb_QueryConfigEntrypoints()
234 ASSERT(entrypoints <= PSB_MAX_ENTRYPOINTS); in psb_QueryConfigEntrypoints()
236 if (0 == entrypoints) { in psb_QueryConfigEntrypoints()
240 *num_entrypoints = entrypoints; in psb_QueryConfigEntrypoints()