blob: 53b7636b639e2a0441a3af5b412f6d9e40e3f570 [file] [log] [blame]
Yunqing Wang15dffcf2012-10-04 12:59:36 -07001/*
Frank Galligan38536f62013-12-12 08:36:34 -08002 * Copyright (c) 2013 The WebM project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
Yunqing Wang15dffcf2012-10-04 12:59:36 -07009 */
10
11#include <cstdio>
12#include <cstdlib>
13#include <string>
14#include "third_party/googletest/src/include/gtest/gtest.h"
John Koleszar706cafe2013-01-18 11:51:12 -080015#include "test/codec_factory.h"
Yunqing Wang15dffcf2012-10-04 12:59:36 -070016#include "test/decode_test_driver.h"
17#include "test/ivf_video_source.h"
Ronald S. Bultje1407bdc2013-02-01 09:35:28 -080018#include "test/md5_helper.h"
Frank Galligan52b2d502013-12-11 09:01:47 -080019#include "test/test_vectors.h"
20#include "test/util.h"
21#include "test/webm_video_source.h"
Yunqing Wang15dffcf2012-10-04 12:59:36 -070022#include "vpx_mem/vpx_mem.h"
Yunqing Wang15dffcf2012-10-04 12:59:36 -070023
Yunqing Wang15dffcf2012-10-04 12:59:36 -070024namespace {
Yunqing Wang15dffcf2012-10-04 12:59:36 -070025
John Koleszar706cafe2013-01-18 11:51:12 -080026class TestVectorTest : public ::libvpx_test::DecoderTest,
27 public ::libvpx_test::CodecTestWithParam<const char*> {
Yunqing Wang15dffcf2012-10-04 12:59:36 -070028 protected:
John Koleszar706cafe2013-01-18 11:51:12 -080029 TestVectorTest() : DecoderTest(GET_PARAM(0)), md5_file_(NULL) {}
Yunqing Wang15dffcf2012-10-04 12:59:36 -070030
31 virtual ~TestVectorTest() {
32 if (md5_file_)
33 fclose(md5_file_);
34 }
35
36 void OpenMD5File(const std::string& md5_file_name_) {
37 md5_file_ = libvpx_test::OpenTestDataFile(md5_file_name_);
James Zern77e64d82013-12-18 17:00:40 -080038 ASSERT_TRUE(md5_file_ != NULL) << "Md5 file open failed. Filename: "
Yunqing Wang15dffcf2012-10-04 12:59:36 -070039 << md5_file_name_;
40 }
41
42 virtual void DecompressedFrameHook(const vpx_image_t& img,
43 const unsigned int frame_number) {
James Zern66c7dff2013-06-25 17:55:28 -070044 ASSERT_TRUE(md5_file_ != NULL);
Yunqing Wang15dffcf2012-10-04 12:59:36 -070045 char expected_md5[33];
46 char junk[128];
47
48 // Read correct md5 checksums.
49 const int res = fscanf(md5_file_, "%s %s", expected_md5, junk);
50 ASSERT_NE(res, EOF) << "Read md5 data failed";
51 expected_md5[32] = '\0';
52
Ronald S. Bultje1407bdc2013-02-01 09:35:28 -080053 ::libvpx_test::MD5 md5_res;
54 md5_res.Add(&img);
55 const char *actual_md5 = md5_res.Get();
Yunqing Wang15dffcf2012-10-04 12:59:36 -070056
57 // Check md5 match.
58 ASSERT_STREQ(expected_md5, actual_md5)
59 << "Md5 checksums don't match: frame number = " << frame_number;
60 }
61
62 private:
63 FILE *md5_file_;
64};
65
66// This test runs through the whole set of test vectors, and decodes them.
67// The md5 checksums are computed for each frame in the video file. If md5
68// checksums match the correct md5 data, then the test is passed. Otherwise,
69// the test failed.
70TEST_P(TestVectorTest, MD5Match) {
John Koleszar706cafe2013-01-18 11:51:12 -080071 const std::string filename = GET_PARAM(1);
John Koleszar119c9812013-06-13 12:42:05 -070072 libvpx_test::CompressedVideoSource *video = NULL;
Yunqing Wang15dffcf2012-10-04 12:59:36 -070073
John Koleszar119c9812013-06-13 12:42:05 -070074 // Open compressed video file.
75 if (filename.substr(filename.length() - 3, 3) == "ivf") {
76 video = new libvpx_test::IVFVideoSource(filename);
77 } else if (filename.substr(filename.length() - 4, 4) == "webm") {
78 video = new libvpx_test::WebMVideoSource(filename);
79 }
80 video->Init();
Yunqing Wang15dffcf2012-10-04 12:59:36 -070081
82 // Construct md5 file name.
83 const std::string md5_filename = filename + ".md5";
84 OpenMD5File(md5_filename);
85
86 // Decode frame, and check the md5 matching.
John Koleszar119c9812013-06-13 12:42:05 -070087 ASSERT_NO_FATAL_FAILURE(RunLoop(video));
88 delete video;
Yunqing Wang15dffcf2012-10-04 12:59:36 -070089}
90
John Koleszar706cafe2013-01-18 11:51:12 -080091VP8_INSTANTIATE_TEST_CASE(TestVectorTest,
Frank Galligan52b2d502013-12-11 09:01:47 -080092 ::testing::ValuesIn(libvpx_test::kVP8TestVectors));
John Koleszar119c9812013-06-13 12:42:05 -070093VP9_INSTANTIATE_TEST_CASE(TestVectorTest,
Frank Galligan52b2d502013-12-11 09:01:47 -080094 ::testing::ValuesIn(libvpx_test::kVP9TestVectors));
Yunqing Wang15dffcf2012-10-04 12:59:36 -070095
96} // namespace