Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 1 | /* |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 3 | * |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 10 | */ |
| 11 | #ifndef TEST_Y4M_VIDEO_SOURCE_H_ |
| 12 | #define TEST_Y4M_VIDEO_SOURCE_H_ |
Alex Converse | 35fb344 | 2015-09-15 21:18:32 -0700 | [diff] [blame] | 13 | #include <algorithm> |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 14 | #include <string> |
| 15 | |
| 16 | #include "test/video_source.h" |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 17 | #include "./y4minput.h" |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 18 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 19 | namespace libaom_test { |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 20 | |
| 21 | // This class extends VideoSource to allow parsing of raw yv12 |
| 22 | // so that we can do actual file encodes. |
| 23 | class Y4mVideoSource : public VideoSource { |
| 24 | public: |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 25 | Y4mVideoSource(const std::string &file_name, unsigned int start, int limit) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 26 | : file_name_(file_name), input_file_(NULL), img_(new aom_image_t()), |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 27 | start_(start), limit_(limit), frame_(0), framerate_numerator_(0), |
| 28 | framerate_denominator_(0), y4m_() {} |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 29 | |
| 30 | virtual ~Y4mVideoSource() { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 31 | aom_img_free(img_.get()); |
James Zern | f651bcb | 2014-02-26 23:27:17 -0800 | [diff] [blame] | 32 | CloseSource(); |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 33 | } |
| 34 | |
Deb Mukherjee | 5820c5d | 2014-06-12 16:53:13 -0700 | [diff] [blame] | 35 | virtual void OpenSource() { |
James Zern | f651bcb | 2014-02-26 23:27:17 -0800 | [diff] [blame] | 36 | CloseSource(); |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 37 | input_file_ = OpenTestDataFile(file_name_); |
| 38 | ASSERT_TRUE(input_file_ != NULL) << "Input file open failed. Filename: " |
Deb Mukherjee | 5820c5d | 2014-06-12 16:53:13 -0700 | [diff] [blame] | 39 | << file_name_; |
| 40 | } |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 41 | |
Deb Mukherjee | 5820c5d | 2014-06-12 16:53:13 -0700 | [diff] [blame] | 42 | virtual void ReadSourceToStart() { |
| 43 | ASSERT_TRUE(input_file_ != NULL); |
| 44 | ASSERT_FALSE(y4m_input_open(&y4m_, input_file_, NULL, 0, 0)); |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 45 | framerate_numerator_ = y4m_.fps_n; |
| 46 | framerate_denominator_ = y4m_.fps_d; |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 47 | frame_ = 0; |
| 48 | for (unsigned int i = 0; i < start_; i++) { |
Deb Mukherjee | 5820c5d | 2014-06-12 16:53:13 -0700 | [diff] [blame] | 49 | Next(); |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 50 | } |
Dmitry Kovalev | 79199e4 | 2014-07-02 22:23:38 -0700 | [diff] [blame] | 51 | FillFrame(); |
Deb Mukherjee | 82dc133 | 2014-06-12 16:53:13 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Deb Mukherjee | 5820c5d | 2014-06-12 16:53:13 -0700 | [diff] [blame] | 54 | virtual void Begin() { |
| 55 | OpenSource(); |
| 56 | ReadSourceToStart(); |
| 57 | } |
| 58 | |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 59 | virtual void Next() { |
| 60 | ++frame_; |
| 61 | FillFrame(); |
| 62 | } |
| 63 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 64 | virtual aom_image_t *img() const { |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 65 | return (frame_ < limit_) ? img_.get() : NULL; |
| 66 | } |
| 67 | |
| 68 | // Models a stream where Timebase = 1/FPS, so pts == frame. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 69 | virtual aom_codec_pts_t pts() const { return frame_; } |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 70 | |
| 71 | virtual unsigned long duration() const { return 1; } |
| 72 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 73 | virtual aom_rational_t timebase() const { |
| 74 | const aom_rational_t t = { framerate_denominator_, framerate_numerator_ }; |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 75 | return t; |
| 76 | } |
| 77 | |
| 78 | virtual unsigned int frame() const { return frame_; } |
| 79 | |
| 80 | virtual unsigned int limit() const { return limit_; } |
| 81 | |
| 82 | virtual void FillFrame() { |
| 83 | ASSERT_TRUE(input_file_ != NULL); |
| 84 | // Read a frame from input_file. |
| 85 | y4m_input_fetch_frame(&y4m_, input_file_, img_.get()); |
| 86 | } |
| 87 | |
Alex Converse | 35fb344 | 2015-09-15 21:18:32 -0700 | [diff] [blame] | 88 | // Swap buffers with another y4m source. This allows reading a new frame |
| 89 | // while keeping the old frame around. A whole Y4mSource is required and |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 90 | // not just a aom_image_t because of how the y4m reader manipulates |
| 91 | // aom_image_t internals, |
Alex Converse | 35fb344 | 2015-09-15 21:18:32 -0700 | [diff] [blame] | 92 | void SwapBuffers(Y4mVideoSource *other) { |
| 93 | std::swap(other->y4m_.dst_buf, y4m_.dst_buf); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 94 | aom_image_t *tmp; |
Alex Converse | 35fb344 | 2015-09-15 21:18:32 -0700 | [diff] [blame] | 95 | tmp = other->img_.release(); |
| 96 | other->img_.reset(img_.release()); |
| 97 | img_.reset(tmp); |
| 98 | } |
| 99 | |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 100 | protected: |
James Zern | f651bcb | 2014-02-26 23:27:17 -0800 | [diff] [blame] | 101 | void CloseSource() { |
| 102 | y4m_input_close(&y4m_); |
| 103 | y4m_ = y4m_input(); |
| 104 | if (input_file_ != NULL) { |
| 105 | fclose(input_file_); |
| 106 | input_file_ = NULL; |
| 107 | } |
| 108 | } |
| 109 | |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 110 | std::string file_name_; |
| 111 | FILE *input_file_; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 112 | testing::internal::scoped_ptr<aom_image_t> img_; |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 113 | unsigned int start_; |
| 114 | unsigned int limit_; |
| 115 | unsigned int frame_; |
| 116 | int framerate_numerator_; |
| 117 | int framerate_denominator_; |
| 118 | y4m_input y4m_; |
| 119 | }; |
| 120 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 121 | } // namespace libaom_test |
Alex Converse | 8a0b0a0 | 2014-01-16 15:17:41 -0800 | [diff] [blame] | 122 | |
| 123 | #endif // TEST_Y4M_VIDEO_SOURCE_H_ |