DASH Media Packaging SDK
|
RepresentationType in MPD. More...
#include <xml_node.h>
Public Member Functions | |
bool | AddVideoInfo (const MediaInfo::VideoInfo &video_info, bool set_width, bool set_height, bool set_frame_rate) |
bool | AddAudioInfo (const MediaInfo::AudioInfo &audio_info) |
bool | AddVODOnlyInfo (const MediaInfo &media_info) |
bool | AddLiveOnlyInfo (const MediaInfo &media_info, const std::list< SegmentInfo > &segment_infos, uint32_t start_number) |
Public Member Functions inherited from shaka::xml::RepresentationBaseXmlNode | |
bool | AddContentProtectionElements (const std::list< ContentProtectionElement > &content_protection_elements) |
Public Member Functions inherited from shaka::xml::XmlNode | |
XmlNode (const char *name) | |
bool | AddChild (scoped_xml_ptr< xmlNode > child) |
bool | AddElements (const std::vector< Element > &elements) |
Adds Elements to this node using the Element struct. | |
void | SetStringAttribute (const char *attribute_name, const std::string &attribute) |
void | SetIntegerAttribute (const char *attribute_name, uint64_t number) |
void | SetFloatingPointAttribute (const char *attribute_name, double number) |
void | SetId (uint32_t id) |
void | SetContent (const std::string &content) |
scoped_xml_ptr< xmlNode > | PassScopedPtr () |
xmlNodePtr | Release () |
xmlNodePtr | GetRawPtr () |
Additional Inherited Members | |
Protected Member Functions inherited from shaka::xml::RepresentationBaseXmlNode | |
RepresentationBaseXmlNode (const char *name) | |
RepresentationType in MPD.
Definition at line 128 of file xml_node.h.
bool shaka::xml::RepresentationXmlNode::AddAudioInfo | ( | const MediaInfo::AudioInfo & | audio_info | ) |
Adds audio metadata to the MPD.
audio_info | constains the AudioInfos for a Representation. |
Definition at line 243 of file xml_node.cc.
bool shaka::xml::RepresentationXmlNode::AddLiveOnlyInfo | ( | const MediaInfo & | media_info, |
const std::list< SegmentInfo > & | segment_infos, | ||
uint32_t | start_number | ||
) |
segment_infos | is a set of SegmentInfos. This method assumes that SegmentInfos are sorted by its start time. |
Definition at line 298 of file xml_node.cc.
bool shaka::xml::RepresentationXmlNode::AddVideoInfo | ( | const MediaInfo::VideoInfo & | video_info, |
bool | set_width, | ||
bool | set_height, | ||
bool | set_frame_rate | ||
) |
Adds video metadata to the MPD.
video_info | constains the VideoInfo for a Representation. |
set_width | is a flag for setting the width attribute. |
set_height | is a flag for setting the height attribute. |
set_frame_rate | is a flag for setting the frameRate attribute. |
Definition at line 216 of file xml_node.cc.
bool shaka::xml::RepresentationXmlNode::AddVODOnlyInfo | ( | const MediaInfo & | media_info | ) |
Adds fields that are specific to VOD. This ignores media_info fields for Live.
media_info | is a MediaInfo with VOD information. |
Definition at line 251 of file xml_node.cc.