chromium/media/parsers/h264_poc_unittest.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include <stdint.h>

#include "base/files/file_path.h"
#include "base/files/memory_mapped_file.h"
#include "media/base/test_data_util.h"
#include "media/parsers/h264_parser.h"
#include "media/parsers/h264_poc.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace media {

class H264POCTest : public testing::Test {};

TEST_F(H264POCTest, PicOrderCntType0) {}

TEST_F(H264POCTest, PicOrderCntType0_WithMMCO5) {}

TEST_F(H264POCTest, PicOrderCntType1) {}

TEST_F(H264POCTest, PicOrderCntType1_WithMMCO5) {}

// |frame_num| values may be duplicated by non-reference frames.
TEST_F(H264POCTest, PicOrderCntType1_DupFrameNum) {}

TEST_F(H264POCTest, PicOrderCntType2) {}

TEST_F(H264POCTest, PicOrderCntType2_WithMMCO5) {}

}  // namespace media