Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / libvpx / source / libvpx / test / y4m_video_source.h
1 /*
2  *  Copyright (c) 2012 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.
9  */
10 #ifndef TEST_Y4M_VIDEO_SOURCE_H_
11 #define TEST_Y4M_VIDEO_SOURCE_H_
12 #include <string>
13
14 #include "test/video_source.h"
15 #include "./y4minput.h"
16
17 namespace libvpx_test {
18
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 {
22  public:
23   Y4mVideoSource(const std::string &file_name,
24                   unsigned int start, int limit)
25       : file_name_(file_name),
26         input_file_(NULL),
27         img_(new vpx_image_t()),
28         start_(start),
29         limit_(limit),
30         frame_(0),
31         framerate_numerator_(0),
32         framerate_denominator_(0),
33         y4m_() {
34   }
35
36   virtual ~Y4mVideoSource() {
37     vpx_img_free(img_.get());
38     y4m_input_close(&y4m_);
39     if (input_file_)
40       fclose(input_file_);
41   }
42
43   virtual void Begin() {
44     if (input_file_)
45       fclose(input_file_);
46     input_file_ = OpenTestDataFile(file_name_);
47     ASSERT_TRUE(input_file_ != NULL) << "Input file open failed. Filename: "
48         << file_name_;
49
50     y4m_input_open(&y4m_, input_file_, NULL, 0, 0);
51     framerate_numerator_ = y4m_.fps_n;
52     framerate_denominator_ = y4m_.fps_d;
53
54     frame_ = 0;
55     for (unsigned int i = 0; i < start_; i++) {
56         Next();
57     }
58
59     FillFrame();
60   }
61
62   virtual void Next() {
63     ++frame_;
64     FillFrame();
65   }
66
67   virtual vpx_image_t *img() const {
68     return (frame_ < limit_) ? img_.get() : NULL;
69   }
70
71   // Models a stream where Timebase = 1/FPS, so pts == frame.
72   virtual vpx_codec_pts_t pts() const { return frame_; }
73
74   virtual unsigned long duration() const { return 1; }
75
76   virtual vpx_rational_t timebase() const {
77     const vpx_rational_t t = { framerate_denominator_, framerate_numerator_ };
78     return t;
79   }
80
81   virtual unsigned int frame() const { return frame_; }
82
83   virtual unsigned int limit() const { return limit_; }
84
85   virtual void FillFrame() {
86     ASSERT_TRUE(input_file_ != NULL);
87     // Read a frame from input_file.
88     y4m_input_fetch_frame(&y4m_, input_file_, img_.get());
89   }
90
91  protected:
92   std::string file_name_;
93   FILE *input_file_;
94   testing::internal::scoped_ptr<vpx_image_t> img_;
95   unsigned int start_;
96   unsigned int limit_;
97   unsigned int frame_;
98   int framerate_numerator_;
99   int framerate_denominator_;
100   y4m_input y4m_;
101 };
102
103 }  // namespace libvpx_test
104
105 #endif  // TEST_Y4M_VIDEO_SOURCE_H_