DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerator
segmenter_test_base.h
1 // Copyright 2015 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #ifndef MEDIA_FORMATS_WEBM_SEGMENTER_TEST_UTILS_H_
8 #define MEDIA_FORMATS_WEBM_SEGMENTER_TEST_UTILS_H_
9 
10 #include <gtest/gtest.h>
11 
12 #include "packager/media/base/media_sample.h"
13 #include "packager/media/base/muxer_options.h"
14 #include "packager/media/base/video_stream_info.h"
15 #include "packager/media/base/status.h"
16 #include "packager/media/base/stream_info.h"
17 #include "packager/media/base/test/status_test_util.h"
18 #include "packager/media/file/file_closer.h"
19 #include "packager/media/file/file_test_util.h"
20 #include "packager/media/file/memory_file.h"
21 #include "packager/media/formats/webm/mkv_writer.h"
22 #include "packager/media/formats/webm/segmenter.h"
23 #include "packager/media/formats/webm/webm_parser.h"
24 
25 namespace edash_packager {
26 namespace media {
27 
28 class SegmentTestBase : public ::testing::Test {
29  public:
30  enum KeyFrameFlag {
31  kKeyFrame,
32  kNotKeyFrame,
33  };
34  enum SideDataFlag {
35  kGenerateSideData,
36  kNoSideData,
37  };
38 
39  protected:
41 
42  void SetUp() override;
43  void TearDown() override;
44 
46  template <typename S>
48  StreamInfo* info,
49  scoped_ptr<webm::Segmenter>* result) const {
50  scoped_ptr<S> segmenter(new S(options));
51 
52  scoped_ptr<MkvWriter> writer(new MkvWriter());
53  ASSERT_OK(writer->Open(options.output_file_name));
54  ASSERT_OK(segmenter->Initialize(writer.Pass(), info, NULL, NULL, NULL));
55  *result = segmenter.Pass();
56  }
57 
59  scoped_refptr<MediaSample> CreateSample(KeyFrameFlag key_frame_flag,
60  uint64_t duration,
61  SideDataFlag side_data_flag);
66 
68  std::string OutputFileName() const;
70  std::string TemplateFileName(int number) const;
71 
72  protected:
73  // A helper class used to determine the number of clusters and frames for a
74  // given WebM file.
75  class ClusterParser : private WebMParserClient {
76  public:
77  ClusterParser();
78  ~ClusterParser() override;
79 
80  // Make sure to use ASSERT_NO_FATAL_FAILURE.
81  void PopulateFromCluster(const std::string& file_name);
82  void PopulateFromSegment(const std::string& file_name);
83 
84  int GetFrameCountForCluster(size_t i) const;
85 
86  int cluster_count() const;
87 
88  private:
89  // WebMParserClient overrides.
90  WebMParserClient* OnListStart(int id) override;
91  bool OnListEnd(int id) override;
92  bool OnUInt(int id, int64_t val) override;
93  bool OnFloat(int id, double val) override;
94  bool OnBinary(int id, const uint8_t* data, int size) override;
95  bool OnString(int id, const std::string& str) override;
96 
97  private:
98  std::vector<int> cluster_sizes_;
99  bool in_cluster_;
100  };
101 
102  protected:
103  std::string output_file_name_;
104  std::string segment_template_;
105  uint64_t cur_time_timescale_;
106  bool single_segment_;
107 };
108 
109 } // namespace media
110 } // namespace edash_packager
111 
112 #endif // MEDIA_FORMATS_WEBM_SEGMENTER_TEST_UTILS_H_
An implementation of IMkvWriter using our File type.
Definition: mkv_writer.h:21
std::string OutputFileName() const
Gets the file name of the current output file.
Abstract class holds stream information.
Definition: stream_info.h:26
void CreateAndInitializeSegmenter(const MuxerOptions &options, StreamInfo *info, scoped_ptr< webm::Segmenter > *result) const
Creates a Segmenter of the given type and initializes it.
std::string TemplateFileName(int number) const
Gets the file name of the given template file.
VideoStreamInfo * CreateVideoStreamInfo() const
Creates a video stream info object for testing.
MuxerOptions CreateMuxerOptions() const
Creates a Muxer options object for testing.
Holds video stream information.
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:18
scoped_refptr< MediaSample > CreateSample(KeyFrameFlag key_frame_flag, uint64_t duration, SideDataFlag side_data_flag)
Creates a new media sample.