DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
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 
16 class VideoStreamInfo : public StreamInfo {
17  public:
21  VideoStreamInfo(int track_id, uint32_t time_scale, uint64_t duration,
22  Codec codec, const std::string& codec_string,
23  const uint8_t* codec_config, size_t codec_config_size,
24  uint16_t width, uint16_t height, uint32_t pixel_width,
25  uint32_t pixel_height, int16_t trick_play_rate,
26  uint8_t nalu_length_size, const std::string& language,
27  bool is_encrypted);
28 
31  bool IsValidConfig() const override;
32  std::string ToString() const override;
34 
35  uint16_t width() const { return width_; }
36  uint16_t height() const { return height_; }
39  uint32_t pixel_width() const { return pixel_width_; }
42  uint32_t pixel_height() const { return pixel_height_; }
43  uint8_t nalu_length_size() const { return nalu_length_size_; }
44  int16_t trick_play_rate() const { return trick_play_rate_; }
45 
46  void set_width(uint32_t width) { width_ = width; }
47  void set_height(uint32_t height) { height_ = height; }
48  void set_pixel_width(uint32_t pixel_width) { pixel_width_ = pixel_width; }
49  void set_pixel_height(uint32_t pixel_height) { pixel_height_ = pixel_height; }
50 
51  private:
52  ~VideoStreamInfo() override;
53 
54  uint16_t width_;
55  uint16_t height_;
56 
57  // pixel_width_:pixel_height_ is the sample aspect ratio.
58  // 0 means unknown.
59  uint32_t pixel_width_;
60  uint32_t pixel_height_;
61  int16_t trick_play_rate_; // Non-zero for trick-play streams.
62 
63  // Specifies the normalized size of the NAL unit length field. Can be 1, 2 or
64  // 4 bytes, or 0 if the size if unknown or the stream is not a AVC stream
65  // (H.264).
66  uint8_t nalu_length_size_;
67 
68  // Not using DISALLOW_COPY_AND_ASSIGN here intentionally to allow the compiler
69  // generated copy constructor and assignment operator. Since the extra data is
70  // typically small, the performance impact is minimal.
71 };
72 
73 } // namespace media
74 } // namespace shaka
75 
76 #endif // MEDIA_BASE_VIDEO_STREAM_INFO_H_
Abstract class holds stream information.
Definition: stream_info.h:53
bool IsValidConfig() const override
Holds video stream information.
std::string ToString() const override
VideoStreamInfo(int track_id, uint32_t time_scale, uint64_t duration, Codec codec, const std::string &codec_string, const uint8_t *codec_config, size_t codec_config_size, uint16_t width, uint16_t height, uint32_t pixel_width, uint32_t pixel_height, int16_t trick_play_rate, uint8_t nalu_length_size, const std::string &language, bool is_encrypted)