Home
last modified time | relevance | path

Searched refs:profiles (Results 1 – 21 of 21) sorted by relevance

/hardware/intel/common/libva/test/basic/
Dtest_x11.c28 VAProfile *profiles ; variable
55 if (profiles) in test_terminate()
57 free(profiles); in test_terminate()
58 profiles = NULL; in test_terminate()
Dtest_common.c54 VAProfile *profiles = NULL; variable
146 profiles = malloc(max_profiles * sizeof(VAProfile)); in test_profiles()
147 ASSERT(profiles); in test_profiles()
149 va_status = vaQueryConfigProfiles(va_dpy, profiles, &num_profiles); in test_profiles()
160 status(" profile %d [%s]\n", profiles[i], profile2string(profiles[i])); in test_profiles()
Dtest_android.c28 VAProfile *profiles ; variable
56 if (profiles) in test_terminate()
58 free(profiles); in test_terminate()
59 profiles = NULL; in test_terminate()
Dtest_06.c56 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 …status("Checking vaQueryConfigAttributes for %s, %s\n", profile2string(profiles[i]), entrypoint2s… in test()
97 ASSERT( profile == profiles[i] ); in test()
Dtest_05.c50 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
55 …status("vaCreateConfig for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[… in test()
56 …va_status = vaCreateConfig(va_dpy, profiles[i], entrypoints[j], NULL, 0, &(configs[config_count])); in test()
Dtest_04.c60 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
66 …status("vaGetConfigAttributes for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entry… in test()
67 … va_status = vaGetConfigAttributes(va_dpy, profiles[i], entrypoints[j], attrib_list, num_attribs); in test()
Dtest.c81 VAProfile *profiles = malloc(vaMaxNumProfiles(va_dpy) * sizeof(VAProfile)); in main() local
82 ASSERT(profiles); in main()
85 va_status = vaQueryConfigProfiles(va_dpy, profiles, &num_profiles); in main()
91 printf("Profile %d\n", profiles[i]); in main()
Dtest_09.c51 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
56 …status("vaCreateConfig for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[… in test()
57 …va_status = vaCreateConfig(va_dpy, profiles[i], entrypoints[j], NULL, 0, &(configs[config_count])); in test()
Dtest_03.c50 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test()
52 …status("vaQueryConfigEntryPoints(%s) reports %d entrypoints\n", profile2string(profiles[i]), num_e… in test()
Dtestplan.txt7 - Query profiles
11 - Query Entrypoints for all profiles
15 - Get Config attributes for all profiles / entrypoints
/hardware/libhardware_legacy/audio/
DAudioPolicyManagerBase.cpp1858 SortedVector<IOProfile *> profiles; in checkOutputsForDevice() local
1868 profiles.add(mHwModules[i]->mOutputProfiles[j]); in checkOutputsForDevice()
1873 if (profiles.isEmpty() && outputs.isEmpty()) { in checkOutputsForDevice()
1880 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { in checkOutputsForDevice()
1881 IOProfile *profile = profiles[profile_index]; in checkOutputsForDevice()
2011 profiles.removeAt(profile_index); in checkOutputsForDevice()
2019 if (profiles.isEmpty()) { in checkOutputsForDevice()
2081 SortedVector<IOProfile *> profiles; in checkInputsForDevice() local
2095 profiles.add(mHwModules[module_index]->mInputProfiles[profile_index]); in checkInputsForDevice()
2100 if (profiles.isEmpty() && inputs.isEmpty()) { in checkInputsForDevice()
[all …]
/hardware/qcom/msm8x84/original-kernel-headers/sound/
Dcompress_params.h391 __u32 profiles; member
/hardware/qcom/msm8x84/kernel-headers/sound/
Dcompress_params.h262 __u32 profiles; member
/hardware/qcom/msm8x74/original-kernel-headers/linux/
Dmsm_vidc_dec.h474 uint32_t profiles; member
/hardware/qcom/msm8x84/kernel-headers/linux/
Dmsm_vidc_dec.h435 uint32_t profiles; member
/hardware/qcom/msm8960/original-kernel-headers/linux/
Dmsm_vidc_dec.h475 uint32_t profiles; member
/hardware/qcom/msm8x74/kernel-headers/linux/
Dmsm_vidc_dec.h432 uint32_t profiles; member
/hardware/qcom/msm8960/kernel-headers/linux/
Dmsm_vidc_dec.h431 uint32_t profiles; member
/hardware/qcom/msm8x84/original-kernel-headers/linux/
Dmsm_vidc_dec.h476 uint32_t profiles; member
/hardware/intel/common/omx-components/videocodec/
DOMXVideoEncoderAVC.cpp86 …VAProfile profiles[MAX_H264_PROFILE] = {VAProfileH264High, VAProfileH264Main, VAProfileH264Baselin… in OMXVideoEncoderAVC() local
90 pl.profile = profiles[i]; in OMXVideoEncoderAVC()
/hardware/intel/common/libva/va/
Dva.c296 CHECK_MAXIMUM(vaStatus, ctx, profiles); in va_openDriver()