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