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  KeySource* key_source,
50  scoped_ptr<webm::Segmenter>* result) const {
51  scoped_ptr<S> segmenter(new S(options));
52 
53  scoped_ptr<MkvWriter> writer(new MkvWriter());
54  ASSERT_OK(writer->Open(options.output_file_name));
55  ASSERT_OK(segmenter->Initialize(
56  writer.Pass(), info, NULL /* progress_listener */,
57  NULL /* muxer_listener */, key_source, 0 /* max_sd_pixels */,
58  1 /* clear_lead_in_seconds */));
59  *result = segmenter.Pass();
60  }
61 
63  scoped_refptr<MediaSample> CreateSample(KeyFrameFlag key_frame_flag,
64  uint64_t duration,
65  SideDataFlag side_data_flag);
70 
72  std::string OutputFileName() const;
74  std::string TemplateFileName(int number) const;
75 
76  protected:
77  // A helper class used to determine the number of clusters and frames for a
78  // given WebM file.
79  class ClusterParser : private WebMParserClient {
80  public:
81  ClusterParser();
82  ~ClusterParser() override;
83 
84  // Make sure to use ASSERT_NO_FATAL_FAILURE.
85  void PopulateFromCluster(const std::string& file_name);
86  void PopulateFromSegment(const std::string& file_name);
87 
88  int GetFrameCountForCluster(size_t i) const;
89 
90  int cluster_count() const;
91 
92  private:
93  // WebMParserClient overrides.
94  WebMParserClient* OnListStart(int id) override;
95  bool OnListEnd(int id) override;
96  bool OnUInt(int id, int64_t val) override;
97  bool OnFloat(int id, double val) override;
98  bool OnBinary(int id, const uint8_t* data, int size) override;
99  bool OnString(int id, const std::string& str) override;
100 
101  private:
102  std::vector<int> cluster_sizes_;
103  bool in_cluster_;
104  };
105 
106  protected:
107  std::string output_file_name_;
108  std::string segment_template_;
109  uint64_t cur_time_timescale_;
110  bool single_segment_;
111 };
112 
113 } // namespace media
114 } // namespace edash_packager
115 
116 #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
std::string TemplateFileName(int number) const
Gets the file name of the given template file.
KeySource is responsible for encryption key acquisition.
Definition: key_source.h:29
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.
void CreateAndInitializeSegmenter(const MuxerOptions &options, StreamInfo *info, KeySource *key_source, scoped_ptr< webm::Segmenter > *result) const
Creates a Segmenter of the given type and initializes it.
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.