blob: 2a87750fa6f018923a87fe40ac1e6d51f7203dde [file] [log] [blame]
#include <lib/async-loop/default.h>
#include <lib/gtest/real_loop_fixture.h>
#include "../codec_factory_app.h"
using CodecFactoryHwDetectTest = ::gtest::RealLoopFixture;
TEST_F(CodecFactoryHwDetectTest, H264DecoderPresent) {
codec_factory::CodecFactoryApp app(dispatcher());
// Loop needs to run till hw codec are fully discovered, so run test till that happens.
RunLoopUntil([&app]() {
auto factory = app.FindHwCodec(
[](const fuchsia::mediacodec::CodecDescription& hw_codec_description) -> bool {
std::string mime_type = "video/h264";
return (fuchsia::mediacodec::CodecType::DECODER == hw_codec_description.codec_type) &&
(mime_type == hw_codec_description.mime_type);
});
return factory != nullptr;
});
}