2 * Copyright (c) 2012 The WebM project authors. All Rights Reserved.
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.
10 #ifndef TEST_Y4M_VIDEO_SOURCE_H_
11 #define TEST_Y4M_VIDEO_SOURCE_H_
14 #include "test/video_source.h"
15 #include "./y4minput.h"
17 namespace libvpx_test {
19 // This class extends VideoSource to allow parsing of raw yv12
20 // so that we can do actual file encodes.
21 class Y4mVideoSource : public VideoSource {
23 Y4mVideoSource(const std::string &file_name,
24 unsigned int start, int limit)
25 : file_name_(file_name),
27 img_(new vpx_image_t()),
31 framerate_numerator_(0),
32 framerate_denominator_(0),
36 virtual ~Y4mVideoSource() {
37 vpx_img_free(img_.get());
41 virtual void OpenSource() {
43 input_file_ = OpenTestDataFile(file_name_);
44 ASSERT_TRUE(input_file_ != NULL) << "Input file open failed. Filename: "
48 virtual void ReadSourceToStart() {
49 ASSERT_TRUE(input_file_ != NULL);
50 ASSERT_FALSE(y4m_input_open(&y4m_, input_file_, NULL, 0, 0));
51 framerate_numerator_ = y4m_.fps_n;
52 framerate_denominator_ = y4m_.fps_d;
54 for (unsigned int i = 0; i < start_; i++) {
60 virtual void Begin() {
70 virtual vpx_image_t *img() const {
71 return (frame_ < limit_) ? img_.get() : NULL;
74 // Models a stream where Timebase = 1/FPS, so pts == frame.
75 virtual vpx_codec_pts_t pts() const { return frame_; }
77 virtual unsigned long duration() const { return 1; }
79 virtual vpx_rational_t timebase() const {
80 const vpx_rational_t t = { framerate_denominator_, framerate_numerator_ };
84 virtual unsigned int frame() const { return frame_; }
86 virtual unsigned int limit() const { return limit_; }
88 virtual void FillFrame() {
89 ASSERT_TRUE(input_file_ != NULL);
90 // Read a frame from input_file.
91 y4m_input_fetch_frame(&y4m_, input_file_, img_.get());
96 y4m_input_close(&y4m_);
98 if (input_file_ != NULL) {
104 std::string file_name_;
106 testing::internal::scoped_ptr<vpx_image_t> img_;
110 int framerate_numerator_;
111 int framerate_denominator_;
115 } // namespace libvpx_test
117 #endif // TEST_Y4M_VIDEO_SOURCE_H_