DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations 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/status.h"
15 #include "packager/media/base/stream_info.h"
16 #include "packager/media/base/test/status_test_util.h"
17 #include "packager/media/base/video_stream_info.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 shaka {
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  const MuxerOptions& options,
49  StreamInfo* info,
50  KeySource* key_source,
51  std::unique_ptr<webm::Segmenter>* result) const {
52  std::unique_ptr<S> segmenter(new S(options));
53 
54  ASSERT_OK(segmenter->Initialize(
55  info, NULL /* progress_listener */, NULL /* muxer_listener */,
56  key_source, 0 /* max_sd_pixels */, 0 /* max_hd_pixels */,
57  0 /* max_uhd1_pixels */, 1 /* clear_lead_in_seconds */));
58  *result = std::move(segmenter);
59  }
60 
62  std::shared_ptr<MediaSample> CreateSample(KeyFrameFlag key_frame_flag,
63  uint64_t duration,
64  SideDataFlag side_data_flag);
69 
71  std::string OutputFileName() const;
73  std::string TemplateFileName(int number) const;
74 
75  protected:
76  // A helper class used to determine the number of clusters and frames for a
77  // given WebM file.
78  class ClusterParser : private WebMParserClient {
79  public:
80  ClusterParser();
81  ~ClusterParser() override;
82 
83  // Make sure to use ASSERT_NO_FATAL_FAILURE.
84  void PopulateFromCluster(const std::string& file_name);
85  void PopulateFromSegment(const std::string& file_name);
86 
87  int GetFrameCountForCluster(size_t i) const;
88 
89  size_t cluster_count() const;
90 
91  private:
92  // WebMParserClient overrides.
93  WebMParserClient* OnListStart(int id) override;
94  bool OnListEnd(int id) override;
95  bool OnUInt(int id, int64_t val) override;
96  bool OnFloat(int id, double val) override;
97  bool OnBinary(int id, const uint8_t* data, int size) override;
98  bool OnString(int id, const std::string& str) override;
99 
100  private:
101  std::vector<int> cluster_sizes_;
102  bool in_cluster_;
103  };
104 
105  protected:
106  std::string output_file_name_;
107  std::string segment_template_;
108  uint64_t cur_time_timescale_;
109  bool single_segment_;
110 };
111 
112 } // namespace media
113 } // namespace shaka
114 
115 #endif // MEDIA_FORMATS_WEBM_SEGMENTER_TEST_UTILS_H_
Abstract class holds stream information.
Definition: stream_info.h:58
VideoStreamInfo * CreateVideoStreamInfo() const
Creates a video stream info object for testing.
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:18
std::string OutputFileName() const
Gets the file name of the current output file.
std::shared_ptr< MediaSample > CreateSample(KeyFrameFlag key_frame_flag, uint64_t duration, SideDataFlag side_data_flag)
Creates a new media sample.
void CreateAndInitializeSegmenter(const MuxerOptions &options, StreamInfo *info, KeySource *key_source, std::unique_ptr< webm::Segmenter > *result) const
Creates a Segmenter of the given type and initializes it.
MuxerOptions CreateMuxerOptions() const
Creates a Muxer options object for testing.
KeySource is responsible for encryption key acquisition.
Definition: key_source.h:30
Holds video stream information.
std::string TemplateFileName(int number) const
Gets the file name of the given template file.