chromium/third_party/libvpx/source/libvpx/test/byte_alignment_test.cc

/*
 *  Copyright (c) 2014 The WebM project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include <string>

#include "./vpx_config.h"
#include "test/codec_factory.h"
#include "test/decode_test_driver.h"
#include "test/md5_helper.h"
#include "test/util.h"
#if CONFIG_WEBM_IO
#include "test/webm_video_source.h"
#endif

namespace {

#if CONFIG_WEBM_IO

const int kLegacyByteAlignment =;
const int kLegacyYPlaneByteAlignment =;
const int kNumPlanesToCheck =;
const char kVP9TestFile[] =;
const char kVP9Md5File[] =;

struct ByteAlignmentTestParam {};

const ByteAlignmentTestParam kBaTestParams[] =;

// Class for testing byte alignment of reference buffers.
class ByteAlignmentTest
    : public ::testing::TestWithParam<ByteAlignmentTestParam> {};

TEST_F(ByteAlignmentTest, SwitchByteAlignment) {}

TEST_P(ByteAlignmentTest, TestAlignment) {}

INSTANTIATE_TEST_SUITE_P();

#endif  // CONFIG_WEBM_IO

}  // namespace