/* * Copyright (c) 2016, Alliance for Open Media. All rights reserved. * * This source code is subject to the terms of the BSD 2 Clause License and * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License * was not distributed with this source code in the LICENSE file, you can * obtain it at www.aomedia.org/license/software. If the Alliance for Open * Media Patent License 1.0 was not distributed with this source code in the * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/ #ifndef AOM_TEST_CODEC_FACTORY_H_ #define AOM_TEST_CODEC_FACTORY_H_
/* Provide CodecTestWith<n>Params classes for a variable number of parameters * to avoid having to include a pointer to the CodecFactory in every test * definition.
*/ template <class T1> class CodecTestWithParam
: public ::testing::TestWithParam<
std::tuple<const libaom_test::CodecFactory *, T1> > {};
template <class T1, class T2> class CodecTestWith2Params
: public ::testing::TestWithParam<
std::tuple<const libaom_test::CodecFactory *, T1, T2> > {};
template <class T1, class T2, class T3> class CodecTestWith3Params
: public ::testing::TestWithParam<
std::tuple<const libaom_test::CodecFactory *, T1, T2, T3> > {};
template <class T1, class T2, class T3, class T4> class CodecTestWith4Params
: public ::testing::TestWithParam<
std::tuple<const libaom_test::CodecFactory *, T1, T2, T3, T4> > {};
template <class T1, class T2, class T3, class T4, class T5> class CodecTestWith5Params
: public ::testing::TestWithParam<
std::tuple<const libaom_test::CodecFactory *, T1, T2, T3, T4, T5> > {
};
template <class T1, class T2, class T3, class T4, class T5, class T6> class CodecTestWith6Params
: public ::testing::TestWithParam<std::tuple< const libaom_test::CodecFactory *, T1, T2, T3, T4, T5, T6> > {};
/* * AV1 Codec Definitions
*/ class AV1Decoder : public Decoder { public: explicit AV1Decoder(aom_codec_dec_cfg_t cfg) : Decoder(cfg) {}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.