Shaka Packager SDK
Loading...
Searching...
No Matches
video_stream_info.h
1// Copyright 2014 Google LLC. 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 PACKAGER_MEDIA_BASE_VIDEO_STREAM_INFO_H_
8#define PACKAGER_MEDIA_BASE_VIDEO_STREAM_INFO_H_
9
10#include <packager/media/base/stream_info.h>
11
12namespace shaka {
13namespace media {
14
15enum class H26xStreamFormat {
16 kUnSpecified,
17 kAnnexbByteStream,
18 kNalUnitStreamWithParameterSetNalus,
19 kNalUnitStreamWithoutParameterSetNalus,
20};
21
24 public:
25 VideoStreamInfo() = default;
26
30 VideoStreamInfo(int track_id,
31 int32_t time_scale,
32 int64_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 uint32_t width,
39 uint32_t height,
40 uint32_t pixel_width,
41 uint32_t pixel_height,
42 uint8_t color_primaries,
43 uint8_t matrix_coefficients,
44 uint8_t transfer_characteristics,
45 uint32_t trick_play_factor,
46 uint8_t nalu_length_size,
47 const std::string& language,
48 bool is_encrypted);
49
50 ~VideoStreamInfo() override;
51
54 bool IsValidConfig() const override;
55 std::string ToString() const override;
56 std::unique_ptr<StreamInfo> Clone() const override;
58
59 const std::string supplemental_codec() const { return supplemental_codec_; }
60 FourCC compatible_brand() const { return compatible_brand_; }
61 const std::vector<uint8_t>& extra_config() const { return extra_config_; }
62 H26xStreamFormat h26x_stream_format() const { return h26x_stream_format_; }
63 uint32_t width() const { return width_; }
64 uint32_t height() const { return height_; }
67 uint32_t pixel_width() const { return pixel_width_; }
70 uint32_t pixel_height() const { return pixel_height_; }
71 uint8_t transfer_characteristics() const { return transfer_characteristics_; }
72 uint8_t color_primaries() const { return color_primaries_; }
73 uint8_t matrix_coefficients() const { return matrix_coefficients_; }
74 uint8_t nalu_length_size() const { return nalu_length_size_; }
75 uint32_t trick_play_factor() const { return trick_play_factor_; }
76 uint32_t playback_rate() const { return playback_rate_; }
77 const std::vector<uint8_t>& eme_init_data() const { return eme_init_data_; }
78 const std::vector<uint8_t>& colr_data() const { return colr_data_; }
79
80 void set_supplemental_codec(const std::string supplemental_codec) {
81 supplemental_codec_ = supplemental_codec;
82 }
83
84 void set_compatible_brand(const FourCC compatible_brand) {
85 compatible_brand_ = compatible_brand;
86 }
87
88 void set_extra_config(const std::vector<uint8_t>& extra_config) {
89 extra_config_ = extra_config;
90 }
91 void set_width(uint32_t width) { width_ = width; }
92 void set_height(uint32_t height) { height_ = height; }
93 void set_pixel_width(uint32_t pixel_width) { pixel_width_ = pixel_width; }
94 void set_pixel_height(uint32_t pixel_height) { pixel_height_ = pixel_height; }
95 void set_transfer_characteristics(uint8_t transfer_characteristics) {
96 transfer_characteristics_ = transfer_characteristics;
97 }
98 void set_color_primaries(uint8_t color_primaries) {
99 color_primaries_ = color_primaries;
100 }
101 void set_matrix_coefficients(uint8_t matrix_coefficients) {
102 matrix_coefficients_ = matrix_coefficients;
103 }
104 void set_trick_play_factor(uint32_t trick_play_factor) {
105 trick_play_factor_ = trick_play_factor;
106 }
107 void set_playback_rate(uint32_t playback_rate) {
108 playback_rate_ = playback_rate;
109 }
110 void set_eme_init_data(const uint8_t* eme_init_data,
111 size_t eme_init_data_size) {
112 eme_init_data_.assign(eme_init_data, eme_init_data + eme_init_data_size);
113 }
114 void set_colr_data(const uint8_t* colr_data, size_t colr_data_size) {
115 colr_data_.assign(colr_data, colr_data + colr_data_size);
116 }
117
118 private:
119 // Extra codec configuration in a stream of mp4 boxes. It is only applicable
120 // to mp4 container only. It is needed by some codecs, e.g. Dolby Vision.
121 std::string supplemental_codec_ = "";
122 FourCC compatible_brand_ = FOURCC_NULL;
123 std::vector<uint8_t> extra_config_;
124 H26xStreamFormat h26x_stream_format_;
125 uint32_t width_;
126 uint32_t height_;
127
128 // pixel_width_:pixel_height_ is the sample aspect ratio.
129 // 0 means unknown.
130 uint32_t pixel_width_;
131 uint32_t pixel_height_;
132 uint8_t transfer_characteristics_ = 0;
133 uint8_t color_primaries_ = 0;
134 uint8_t matrix_coefficients_ = 0;
135 uint32_t trick_play_factor_ = 0; // Non-zero for trick-play streams.
136
137 // Playback rate is the attribute for trick play stream, which signals the
138 // playout capabilities
139 // (http://dashif.org/wp-content/uploads/2016/12/DASH-IF-IOP-v4.0-clean.pdf,
140 // page 18, line 1). It is the ratio of main frame rate to the trick play
141 // frame rate. If the time scale and frame duration are not modified after
142 // trick play handler processing, the playback_rate equals to the number of
143 // frames between consecutive key frames selected for trick play stream. For
144 // example, if the video stream has GOP size of 10 and the trick play factor
145 // is 3, the key frames are in this trick play stream are [frame_0, frame_30,
146 // frame_60, ...]. Then the playback_rate is 30.
147 // Non-zero for trick-play streams.
148 uint32_t playback_rate_ = 0;
149
150 // Specifies the size of the NAL unit length field. Can be 1, 2 or 4 bytes, or
151 // 0 if the stream is not a NAL structured video stream or if it is an AnnexB
152 // byte stream.
153 uint8_t nalu_length_size_;
154
155 // Container-specific data used by CDM to generate a license request:
156 // https://w3c.github.io/encrypted-media/#initialization-data.
157 std::vector<uint8_t> eme_init_data_;
158
159 // Raw colr atom data. It is only applicable to the mp4 container.
160 std::vector<uint8_t> colr_data_;
161
162 // Not using DISALLOW_COPY_AND_ASSIGN here intentionally to allow the compiler
163 // generated copy constructor and assignment operator. Since the extra data is
164 // typically small, the performance impact is minimal.
165};
166
167} // namespace media
168} // namespace shaka
169
170#endif // PACKAGER_MEDIA_BASE_VIDEO_STREAM_INFO_H_
Abstract class holds stream information.
Definition stream_info.h:71
Holds video stream information.
std::unique_ptr< StreamInfo > Clone() const override
bool IsValidConfig() const override
std::string ToString() const override
All the methods that are virtual are virtual for mocking.