Shaka Packager SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends
video_stream_info.h
1 // Copyright 2014 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_BASE_VIDEO_STREAM_INFO_H_
8 #define MEDIA_BASE_VIDEO_STREAM_INFO_H_
9 
10 #include "packager/media/base/stream_info.h"
11 
12 namespace shaka {
13 namespace media {
14 
15 enum class H26xStreamFormat {
16  kUnSpecified,
17  kAnnexbByteStream,
18  kNalUnitStreamWithParameterSetNalus,
19  kNalUnitStreamWithoutParameterSetNalus,
20 };
21 
23 class VideoStreamInfo : public StreamInfo {
24  public:
25  VideoStreamInfo() = default;
26 
30  VideoStreamInfo(int track_id,
31  uint32_t time_scale,
32  uint64_t duration,
33  Codec codec,
34  H26xStreamFormat h26x_stream_format,
35  const std::string& codec_string,
36  const uint8_t* codec_config,
37  size_t codec_config_size,
38  uint16_t width,
39  uint16_t height,
40  uint32_t pixel_width,
41  uint32_t pixel_height,
42  uint32_t trick_play_factor,
43  uint8_t nalu_length_size,
44  const std::string& language,
45  bool is_encrypted);
46 
47  ~VideoStreamInfo() override;
48 
51  bool IsValidConfig() const override;
52  std::string ToString() const override;
53  std::unique_ptr<StreamInfo> Clone() const override;
55 
56  H26xStreamFormat h26x_stream_format() const { return h26x_stream_format_; }
57  uint16_t width() const { return width_; }
58  uint16_t height() const { return height_; }
61  uint32_t pixel_width() const { return pixel_width_; }
64  uint32_t pixel_height() const { return pixel_height_; }
65  uint8_t nalu_length_size() const { return nalu_length_size_; }
66  uint32_t trick_play_factor() const { return trick_play_factor_; }
67  uint32_t playback_rate() const { return playback_rate_; }
68  const std::vector<uint8_t>& eme_init_data() const { return eme_init_data_; }
69 
70  void set_width(uint32_t width) { width_ = width; }
71  void set_height(uint32_t height) { height_ = height; }
72  void set_pixel_width(uint32_t pixel_width) { pixel_width_ = pixel_width; }
73  void set_pixel_height(uint32_t pixel_height) { pixel_height_ = pixel_height; }
74  void set_trick_play_factor(uint32_t trick_play_factor) {
75  trick_play_factor_ = trick_play_factor;
76  }
77  void set_playback_rate(uint32_t playback_rate) {
78  playback_rate_ = playback_rate;
79  }
80  void set_eme_init_data(const uint8_t* eme_init_data,
81  size_t eme_init_data_size) {
82  eme_init_data_.assign(eme_init_data, eme_init_data + eme_init_data_size);
83  }
84 
85  private:
86  H26xStreamFormat h26x_stream_format_;
87  uint16_t width_;
88  uint16_t height_;
89 
90  // pixel_width_:pixel_height_ is the sample aspect ratio.
91  // 0 means unknown.
92  uint32_t pixel_width_;
93  uint32_t pixel_height_;
94  uint32_t trick_play_factor_ = 0; // Non-zero for trick-play streams.
95 
96  // Playback rate is the attribute for trick play stream, which signals the
97  // playout capabilities
98  // (http://dashif.org/wp-content/uploads/2016/12/DASH-IF-IOP-v4.0-clean.pdf,
99  // page 18, line 1). It is the ratio of main frame rate to the trick play
100  // frame rate. If the time scale and frame duration are not modified after
101  // trick play handler processing, the playback_rate equals to the number of
102  // frames between consecutive key frames selected for trick play stream. For
103  // example, if the video stream has GOP size of 10 and the trick play factor
104  // is 3, the key frames are in this trick play stream are [frame_0, frame_30,
105  // frame_60, ...]. Then the playback_rate is 30.
106  // Non-zero for trick-play streams.
107  uint32_t playback_rate_ = 0;
108 
109  // Specifies the size of the NAL unit length field. Can be 1, 2 or 4 bytes, or
110  // 0 if the stream is not a NAL structured video stream or if it is an AnnexB
111  // byte stream.
112  uint8_t nalu_length_size_;
113 
114  // Container-specific data used by CDM to generate a license request:
115  // https://w3c.github.io/encrypted-media/#initialization-data.
116  std::vector<uint8_t> eme_init_data_;
117 
118  // Not using DISALLOW_COPY_AND_ASSIGN here intentionally to allow the compiler
119  // generated copy constructor and assignment operator. Since the extra data is
120  // typically small, the performance impact is minimal.
121 };
122 
123 } // namespace media
124 } // namespace shaka
125 
126 #endif // MEDIA_BASE_VIDEO_STREAM_INFO_H_
Abstract class holds stream information.
Definition: stream_info.h:58
bool IsValidConfig() const override
std::unique_ptr< StreamInfo > Clone() const override
Holds video stream information.
std::string ToString() const override