mirror of https://github.com/intel/libva-utils.git
84 lines
2.8 KiB
C++
84 lines
2.8 KiB
C++
/*
|
|
* Copyright (C) 2016 Intel Corporation. All Rights Reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
* of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
* IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "test_va_api_config_attribs.h"
|
|
|
|
#include <functional>
|
|
|
|
namespace VAAPI {
|
|
VAAPIConfigAttribs::VAAPIConfigAttribs()
|
|
: m_maxNumConfigAttribs(0)
|
|
, m_actualNumConfigAttribs(0)
|
|
{
|
|
m_vaDisplay = doInitialize();
|
|
}
|
|
|
|
VAAPIConfigAttribs::~VAAPIConfigAttribs() { doTerminate(); }
|
|
|
|
TEST_F(VAAPIConfigAttribs, GetConfigAttribs)
|
|
{
|
|
std::vector<VAProfile> profileList;
|
|
std::vector<VAEntrypoint> entrypointList;
|
|
std::vector<VAConfigAttrib> configAttribList;
|
|
VAConfigAttrib configAttrib;
|
|
doGetMaxValues();
|
|
|
|
doQueryConfigProfiles();
|
|
|
|
profileList = getSupportedProfileList();
|
|
|
|
ASSERT_FALSE(profileList.empty());
|
|
|
|
for(auto& itProfile: profileList)
|
|
{
|
|
doQueryConfigEntrypoints(itProfile);
|
|
entrypointList = getSupportedEntrypointList();
|
|
ASSERT_FALSE(entrypointList.empty());
|
|
|
|
for (auto& itEntrypoint : entrypointList) {
|
|
|
|
configAttribList.clear();
|
|
doGetMaxNumConfigAttribs();
|
|
doCreateConfigNoAttrib(itProfile, itEntrypoint);
|
|
|
|
// once ConfigID is obtained, then the attrib list is populated as
|
|
// well. This will confirm that the values returned by calling
|
|
// vaGetConfigAttributes do match
|
|
for (auto& itList: getQueryConfigAttribList())
|
|
{
|
|
configAttrib=itList;
|
|
configAttrib.value = 0;
|
|
configAttribList.push_back(configAttrib);
|
|
}
|
|
|
|
doGetConfigAttributes(itProfile, itEntrypoint, configAttribList);
|
|
|
|
doCheckAttribsMatch(configAttribList);
|
|
|
|
doDestroyConfig();
|
|
}
|
|
}
|
|
}
|
|
} // VAAPI
|