#include <representation.h>
|
enum | SuppressFlag { kSuppressWidth = 1,
kSuppressHeight = 2,
kSuppressFrameRate = 4
} |
|
Representation class contains references to a single media stream, as well as optional ContentProtection elements for that stream.
Definition at line 54 of file representation.h.
◆ Representation() [1/2]
- Parameters
-
media_info | is a MediaInfo containing information on the media. media_info.bandwidth is required for 'static' profile. If media_info.bandwidth is not present in 'dynamic' profile, this tries to estimate it using the info passed to AddNewSegment(). |
mpd_options | is options for the entire MPD. |
representation_id | is the numeric ID for the <Representation>. |
state_change_listener | is an event handler for state changes to the representation. If null, no event handler registered. |
Definition at line 111 of file representation.cc.
◆ Representation() [2/2]
- Parameters
-
representation | points to the original Representation to be cloned. |
state_change_listener | is an event handler for state changes to the representation. If null, no event handler registered. |
Definition at line 127 of file representation.cc.
◆ AddContentProtectionElement()
Add a ContenProtection element to the representation. Representation does not add <ContentProtection> elements automatically to itself even if media_info passed to AdaptationSet::AddRepresentation() has media_info.protected_content populated. This is because some MPDs should have the elements at AdaptationSet level and some at Representation level.
- Parameters
-
element | contains the ContentProtection element contents. If element has {value, schemeIdUri} set and has {“value”, “schemeIdUri”} as key for additional_attributes, then the former is used. |
Definition at line 186 of file representation.cc.
◆ AddNewSegment()
void shaka::Representation::AddNewSegment |
( |
int64_t |
start_time, |
|
|
int64_t |
duration, |
|
|
uint64_t |
size |
|
) |
| |
|
virtual |
Add a media (sub)segment to the representation. AdaptationSetsubsegmentAlignment,segmentAlignment} cannot be set if this is not called for all Representations.
- Parameters
-
start_time | is the start time for the (sub)segment, in units of the stream's time scale. |
duration | is the duration of the segment, in units of the stream's time scale. |
size | of the segment in bytes. |
Definition at line 198 of file representation.cc.
◆ GetMediaInfo()
const MediaInfo & shaka::Representation::GetMediaInfo |
( |
| ) |
const |
|
virtual |
◆ GetStartAndEndTimestamps()
bool shaka::Representation::GetStartAndEndTimestamps |
( |
double * |
start_timestamp_seconds, |
|
|
double * |
end_timestamp_seconds |
|
) |
| const |
Gets the start and end timestamps in seconds.
- Parameters
-
start_timestamp_seconds | contains the returned start timestamp in seconds on success. It can be nullptr, which means that start timestamp does not need to be returned. |
end_timestamp_seconds | contains the returned end timestamp in seconds on success. It can be nullptr, which means that end timestamp does not need to be returned. |
- Returns
- true if successful, false otherwise.
Definition at line 318 of file representation.cc.
◆ GetXml()
xml::scoped_xml_ptr< xmlNode > shaka::Representation::GetXml |
( |
| ) |
|
◆ id()
uint32_t shaka::Representation::id |
( |
| ) |
const |
|
inline |
◆ Init()
bool shaka::Representation::Init |
( |
| ) |
|
Tries to initialize the instance. If this does not succeed, the instance should not be used.
- Returns
- true on success, false otherwise.
Definition at line 144 of file representation.cc.
◆ SetSampleDuration()
void shaka::Representation::SetSampleDuration |
( |
uint32_t |
sample_duration | ) |
|
|
virtual |
Set the sample duration of this Representation. Sample duration is not available right away especially for live. This allows setting the sample duration after the Representation has been initialized.
- Parameters
-
sample_duration | is the duration of a sample. |
Definition at line 218 of file representation.cc.
◆ SuppressOnce()
void shaka::Representation::SuppressOnce |
( |
SuppressFlag |
flag | ) |
|
By calling this methods, the next time GetXml() is called, the corresponding attributes will not be set. For example, if SuppressOnce(kSuppressWidth) is called, then GetXml() will return a <Representation> element without a attribute. Note that it only applies to the next call to GetXml(), calling GetXml() again without calling this methods will return a <Representation> element with the attribute. This may be called multiple times to set different (or the same) flags.
Definition at line 306 of file representation.cc.
◆ UpdateContentProtectionPssh()
void shaka::Representation::UpdateContentProtectionPssh |
( |
const std::string & |
drm_uuid, |
|
|
const std::string & |
pssh |
|
) |
| |
|
virtual |
Update the 'cenc:pssh' element for drm_uuid ContentProtection element. If the element does not exist, this will add one.
- Parameters
-
drm_uuid | is the UUID of the DRM for encryption. |
pssh | is the content of <cenc:pssh> element. Note that DASH IF IOP mentions that this should be base64 encoded string of the whole pssh box. |
- Attention
- This might get removed once DASH IF IOP specification makes a a clear guideline on how to handle key rotation. Also to get this working with shaka-player, this method DOES NOT update the PSSH element. Instead, it removes the element regardless of the content of pssh.
Definition at line 192 of file representation.cc.
The documentation for this class was generated from the following files: