2023-12-01 17:32:19 +00:00
|
|
|
// Copyright 2017 Google LLC. All rights reserved.
|
2017-12-13 01:26:37 +00:00
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
//
|
|
|
|
/// All the methods that are virtual are virtual for mocking.
|
|
|
|
|
2017-12-14 01:00:11 +00:00
|
|
|
#ifndef PACKAGER_MPD_BASE_ADAPTATION_SET_H_
|
|
|
|
#define PACKAGER_MPD_BASE_ADAPTATION_SET_H_
|
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
#include <cstdint>
|
2017-12-13 01:26:37 +00:00
|
|
|
#include <list>
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
2023-12-01 17:32:19 +00:00
|
|
|
#include <optional>
|
2017-12-13 01:26:37 +00:00
|
|
|
#include <set>
|
|
|
|
#include <vector>
|
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
#include <packager/mpd/base/xml/xml_node.h>
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
namespace shaka {
|
|
|
|
|
|
|
|
class MediaInfo;
|
|
|
|
class Representation;
|
|
|
|
|
|
|
|
struct ContentProtectionElement;
|
2017-12-14 01:00:11 +00:00
|
|
|
struct MpdOptions;
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
/// AdaptationSet class provides methods to add Representations and
|
|
|
|
/// <ContentProtection> elements to the AdaptationSet element.
|
|
|
|
class AdaptationSet {
|
|
|
|
public:
|
|
|
|
// The role for this AdaptationSet. These values are used to add a Role
|
|
|
|
// element to the AdaptationSet with schemeIdUri=urn:mpeg:dash:role:2011.
|
|
|
|
// See ISO/IEC 23009-1:2012 section 5.8.5.5.
|
|
|
|
enum Role {
|
2019-06-13 06:01:16 +00:00
|
|
|
kRoleUnknown,
|
2017-12-13 01:26:37 +00:00
|
|
|
kRoleCaption,
|
|
|
|
kRoleSubtitle,
|
|
|
|
kRoleMain,
|
|
|
|
kRoleAlternate,
|
|
|
|
kRoleSupplementary,
|
|
|
|
kRoleCommentary,
|
2022-06-02 16:40:34 +00:00
|
|
|
kRoleDub,
|
|
|
|
kRoleDescription
|
2017-12-13 01:26:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
virtual ~AdaptationSet();
|
|
|
|
|
|
|
|
/// Create a Representation instance using @a media_info.
|
|
|
|
/// @param media_info is a MediaInfo object used to initialize the returned
|
|
|
|
/// Representation instance. It may contain only one of VideoInfo,
|
|
|
|
/// AudioInfo, or TextInfo, i.e. VideoInfo XOR AudioInfo XOR TextInfo.
|
|
|
|
/// @return On success, returns a pointer to Representation. Otherwise returns
|
|
|
|
/// NULL. The returned pointer is owned by the AdaptationSet instance.
|
|
|
|
virtual Representation* AddRepresentation(const MediaInfo& media_info);
|
|
|
|
|
2018-01-03 00:10:54 +00:00
|
|
|
/// Copy a Representation instance from @a representation in another
|
|
|
|
/// AdaptationSet. One use case is to duplicate Representation in different
|
|
|
|
/// periods.
|
|
|
|
/// @param representation is an existing Representation to be cloned from.
|
|
|
|
/// @return On success, returns a pointer to Representation. Otherwise returns
|
|
|
|
/// NULL. The returned pointer is owned by the AdaptationSet instance.
|
2018-01-29 18:37:50 +00:00
|
|
|
virtual Representation* CopyRepresentation(
|
|
|
|
const Representation& representation);
|
2018-01-03 00:10:54 +00:00
|
|
|
|
2017-12-13 01:26:37 +00:00
|
|
|
/// Add a ContenProtection element to the adaptation set.
|
|
|
|
/// AdaptationSet does not add <ContentProtection> elements
|
|
|
|
/// automatically to itself even if @a media_info.protected_content is
|
|
|
|
/// populated. This is because some MPDs should have the elements at
|
|
|
|
/// AdaptationSet level and some at Representation level.
|
|
|
|
/// @param element contains the ContentProtection element contents.
|
|
|
|
/// If @a element has {value, schemeIdUri} set and has
|
|
|
|
/// {“value”, “schemeIdUri”} as key for @a additional_attributes,
|
|
|
|
/// then the former is used.
|
|
|
|
virtual void AddContentProtectionElement(
|
|
|
|
const ContentProtectionElement& element);
|
|
|
|
|
|
|
|
/// Update the 'cenc:pssh' element for @a drm_uuid ContentProtection element.
|
|
|
|
/// If the element does not exist, this will add one.
|
|
|
|
/// @param drm_uuid is the UUID of the DRM for encryption.
|
|
|
|
/// @param 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 @a pssh.
|
|
|
|
virtual void UpdateContentProtectionPssh(const std::string& drm_uuid,
|
|
|
|
const std::string& pssh);
|
|
|
|
|
2019-06-13 06:01:16 +00:00
|
|
|
/// Set the Accessibility element for this AdaptationSet.
|
|
|
|
/// See ISO/IEC 23009-1:2012 section 5.8.4.3.
|
|
|
|
/// @param scheme is the schemeIdUri of the accessibility element.
|
|
|
|
/// @param value is the value of the accessibility element.
|
|
|
|
virtual void AddAccessibility(const std::string& scheme,
|
|
|
|
const std::string& value);
|
|
|
|
|
2017-12-13 01:26:37 +00:00
|
|
|
/// Set the Role element for this AdaptationSet.
|
|
|
|
/// The Role element's is schemeIdUri='urn:mpeg:dash:role:2011'.
|
|
|
|
/// See ISO/IEC 23009-1:2012 section 5.8.5.5.
|
|
|
|
/// @param role of this AdaptationSet.
|
|
|
|
virtual void AddRole(Role role);
|
|
|
|
|
|
|
|
/// Makes a copy of AdaptationSet xml element with its child Representation
|
|
|
|
/// and ContentProtection elements.
|
|
|
|
/// @return On success returns a non-NULL scoped_xml_ptr. Otherwise returns a
|
|
|
|
/// NULL scoped_xml_ptr.
|
2023-12-01 17:32:19 +00:00
|
|
|
std::optional<xml::XmlNode> GetXml();
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
/// Forces the (sub)segmentAlignment field to be set to @a segment_alignment.
|
|
|
|
/// Use this if you are certain that the (sub)segments are alinged/unaligned
|
|
|
|
/// for the AdaptationSet.
|
|
|
|
/// @param segment_alignment is the value used for (sub)segmentAlignment
|
|
|
|
/// attribute.
|
|
|
|
virtual void ForceSetSegmentAlignment(bool segment_alignment);
|
|
|
|
|
2018-01-25 23:04:59 +00:00
|
|
|
/// Adds the adaptation set this adaptation set can switch to.
|
|
|
|
/// @param adaptation_set points to the switchable adaptation set.
|
|
|
|
virtual void AddAdaptationSetSwitching(const AdaptationSet* adaptation_set);
|
|
|
|
|
|
|
|
/// @return true if id is set, false otherwise.
|
|
|
|
bool has_id() const { return static_cast<bool>(id_); }
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
// Must be unique in the Period.
|
2018-01-25 23:04:59 +00:00
|
|
|
uint32_t id() const { return id_.value(); }
|
2017-12-13 01:26:37 +00:00
|
|
|
|
2018-01-03 00:10:54 +00:00
|
|
|
/// Set AdaptationSet@id.
|
|
|
|
/// @param id is the new ID to be set.
|
|
|
|
void set_id(uint32_t id) { id_ = id; }
|
|
|
|
|
2017-12-13 01:26:37 +00:00
|
|
|
/// Notifies the AdaptationSet instance that a new (sub)segment was added to
|
|
|
|
/// the Representation with @a representation_id.
|
|
|
|
/// This must be called every time a (sub)segment is added to a
|
|
|
|
/// Representation in this AdaptationSet.
|
|
|
|
/// If a Representation is constructed using AddRepresentation() this
|
|
|
|
/// is called automatically whenever Representation::AddNewSegment() is
|
|
|
|
/// is called.
|
|
|
|
/// @param representation_id is the id of the Representation with a new
|
|
|
|
/// segment.
|
|
|
|
/// @param start_time is the start time of the new segment.
|
|
|
|
/// @param duration is the duration of the new segment.
|
|
|
|
void OnNewSegmentForRepresentation(uint32_t representation_id,
|
2021-08-04 18:56:44 +00:00
|
|
|
int64_t start_time,
|
|
|
|
int64_t duration);
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
/// Notifies the AdaptationSet instance that the sample duration for the
|
|
|
|
/// Representation was set.
|
|
|
|
/// The frame duration for a video Representation might not be specified when
|
|
|
|
/// a Representation is created (by calling AddRepresentation()).
|
|
|
|
/// This should be used to notify this instance that the frame rate for a
|
|
|
|
/// Represenatation has been set.
|
|
|
|
/// This method is called automatically when
|
|
|
|
/// Represenatation::SetSampleDuration() is called if the Represenatation
|
|
|
|
/// instance was created using AddRepresentation().
|
|
|
|
/// @param representation_id is the id of the Representation.
|
|
|
|
/// @frame_duration is the duration of a frame in the Representation.
|
|
|
|
/// @param timescale is the timescale of the Representation.
|
|
|
|
void OnSetFrameRateForRepresentation(uint32_t representation_id,
|
2021-08-04 18:56:44 +00:00
|
|
|
int32_t frame_duration,
|
|
|
|
int32_t timescale);
|
2017-12-13 01:26:37 +00:00
|
|
|
|
2018-01-25 23:04:59 +00:00
|
|
|
/// Add the adaptation set this trick play adaptation set belongs to.
|
|
|
|
/// @param adaptation_set points to the reference (or main) adapation set.
|
|
|
|
virtual void AddTrickPlayReference(const AdaptationSet* adaptation_set);
|
2017-12-13 01:26:37 +00:00
|
|
|
|
2018-01-05 02:31:27 +00:00
|
|
|
// Return the list of Representations in this AdaptationSet.
|
|
|
|
const std::list<Representation*> GetRepresentations() const;
|
|
|
|
|
2018-01-29 18:37:50 +00:00
|
|
|
/// @return true if it is a video AdaptationSet.
|
|
|
|
bool IsVideo() const;
|
|
|
|
|
2020-03-18 02:33:44 +00:00
|
|
|
/// @return codec.
|
|
|
|
const std::string& codec() const { return codec_; }
|
|
|
|
|
|
|
|
/// Set AdaptationSet@codec.
|
|
|
|
/// @param codec is the new codec to be set.
|
|
|
|
void set_codec(const std::string& codec) { codec_ = codec; };
|
|
|
|
|
2023-09-08 21:41:41 +00:00
|
|
|
/// @return transfer_characteristics.
|
2023-12-01 17:32:19 +00:00
|
|
|
uint32_t transfer_characteristics() const {
|
2023-09-08 21:41:41 +00:00
|
|
|
return transfer_characteristics_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set AdaptationSet's video transfer characteristics.
|
|
|
|
/// @param transfer_characteristics is the video transfer characteristics.
|
|
|
|
void set_transfer_characteristics(const uint32_t& transfer_characteristics) {
|
|
|
|
transfer_characteristics_ = transfer_characteristics;
|
|
|
|
};
|
|
|
|
|
2017-12-13 01:26:37 +00:00
|
|
|
protected:
|
2018-04-05 01:27:57 +00:00
|
|
|
/// @param language is the language of this AdaptationSet. Mainly relevant for
|
2017-12-13 01:26:37 +00:00
|
|
|
/// audio.
|
|
|
|
/// @param mpd_options is the options for this MPD.
|
|
|
|
/// @param mpd_type is the type of this MPD.
|
|
|
|
/// @param representation_counter is a Counter for assigning ID numbers to
|
|
|
|
/// Representation. It can not be NULL.
|
2018-04-05 01:27:57 +00:00
|
|
|
AdaptationSet(const std::string& language,
|
2017-12-13 01:26:37 +00:00
|
|
|
const MpdOptions& mpd_options,
|
2018-07-23 22:24:20 +00:00
|
|
|
uint32_t* representation_counter);
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
AdaptationSet(const AdaptationSet&) = delete;
|
|
|
|
AdaptationSet& operator=(const AdaptationSet&) = delete;
|
|
|
|
|
2017-12-14 01:00:11 +00:00
|
|
|
friend class Period;
|
2017-12-14 21:30:16 +00:00
|
|
|
friend class AdaptationSetTest;
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
// kSegmentAlignmentUnknown means that it is uncertain if the
|
|
|
|
// (sub)segments are aligned or not.
|
|
|
|
// kSegmentAlignmentTrue means that it is certain that the all the (current)
|
|
|
|
// segments added to the adaptation set are aligned.
|
|
|
|
// kSegmentAlignmentFalse means that it is it is certain that some segments
|
|
|
|
// are not aligned. This is useful to disable the computation for
|
|
|
|
// segment alignment, once it is certain that some segments are not aligned.
|
|
|
|
enum SegmentAligmentStatus {
|
|
|
|
kSegmentAlignmentUnknown,
|
|
|
|
kSegmentAlignmentTrue,
|
|
|
|
kSegmentAlignmentFalse
|
|
|
|
};
|
|
|
|
|
|
|
|
// This maps Representations (IDs) to a list of start times of the segments.
|
|
|
|
// e.g.
|
|
|
|
// If Representation 1 has start time 0, 100, 200 and Representation 2 has
|
|
|
|
// start times 0, 200, 400, then the map contains:
|
|
|
|
// 1 -> [0, 100, 200]
|
|
|
|
// 2 -> [0, 200, 400]
|
2021-08-04 18:56:44 +00:00
|
|
|
typedef std::map<uint32_t, std::list<int64_t>> RepresentationTimeline;
|
2017-12-13 01:26:37 +00:00
|
|
|
|
2018-01-03 00:10:54 +00:00
|
|
|
// Update AdaptationSet attributes for new MediaInfo.
|
|
|
|
void UpdateFromMediaInfo(const MediaInfo& media_info);
|
|
|
|
|
2017-12-13 01:26:37 +00:00
|
|
|
/// Called from OnNewSegmentForRepresentation(). Checks whether the segments
|
|
|
|
/// are aligned. Sets segments_aligned_.
|
2018-07-16 17:26:16 +00:00
|
|
|
/// This is only for dynamic MPD. For static MPD,
|
|
|
|
/// CheckStaticSegmentAlignment() should be used.
|
2017-12-13 01:26:37 +00:00
|
|
|
/// @param representation_id is the id of the Representation with a new
|
|
|
|
/// segment.
|
|
|
|
/// @param start_time is the start time of the new segment.
|
|
|
|
/// @param duration is the duration of the new segment.
|
2018-07-16 17:26:16 +00:00
|
|
|
void CheckDynamicSegmentAlignment(uint32_t representation_id,
|
2021-08-04 18:56:44 +00:00
|
|
|
int64_t start_time,
|
|
|
|
int64_t duration);
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
// Checks representation_segment_start_times_ and sets segments_aligned_.
|
2018-07-16 17:26:16 +00:00
|
|
|
// Use this for static MPD, do not use for dynamic MPD.
|
|
|
|
void CheckStaticSegmentAlignment();
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
// Records the framerate of a Representation.
|
2021-08-04 18:56:44 +00:00
|
|
|
void RecordFrameRate(int32_t frame_duration, int32_t timescale);
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
std::list<ContentProtectionElement> content_protection_elements_;
|
2018-01-18 18:55:36 +00:00
|
|
|
// representation_id => Representation map. It also keeps the representations_
|
|
|
|
// sorted by default.
|
|
|
|
std::map<uint32_t, std::unique_ptr<Representation>> representation_map_;
|
2017-12-13 01:26:37 +00:00
|
|
|
|
2018-07-23 22:24:20 +00:00
|
|
|
uint32_t* const representation_counter_;
|
2017-12-13 01:26:37 +00:00
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
std::optional<uint32_t> id_;
|
2018-04-05 01:27:57 +00:00
|
|
|
const std::string language_;
|
2017-12-13 01:26:37 +00:00
|
|
|
const MpdOptions& mpd_options_;
|
|
|
|
|
2018-01-25 23:04:59 +00:00
|
|
|
// An array of adaptation sets this adaptation set can switch to.
|
|
|
|
std::vector<const AdaptationSet*> switchable_adaptation_sets_;
|
2017-12-13 01:26:37 +00:00
|
|
|
|
|
|
|
// Video widths and heights of Representations. Note that this is a set; if
|
|
|
|
// there is only 1 resolution, then @width & @height should be set, otherwise
|
|
|
|
// @maxWidth & @maxHeight should be set for DASH IOP.
|
|
|
|
std::set<uint32_t> video_widths_;
|
|
|
|
std::set<uint32_t> video_heights_;
|
|
|
|
|
|
|
|
// Video representations' frame rates.
|
|
|
|
// The frame rate notation for MPD is <integer>/<integer> (where the
|
|
|
|
// denominator is optional). This means the frame rate could be non-whole
|
|
|
|
// rational value, therefore the key is of type double.
|
|
|
|
// Value is <integer>/<integer> in string form.
|
|
|
|
// So, key == CalculatedValue(value)
|
|
|
|
std::map<double, std::string> video_frame_rates_;
|
|
|
|
|
|
|
|
// contentType attribute of AdaptationSet.
|
|
|
|
// Determined by examining the MediaInfo passed to AddRepresentation().
|
|
|
|
std::string content_type_;
|
|
|
|
|
2020-03-18 02:33:44 +00:00
|
|
|
// Codec of AdaptationSet.
|
|
|
|
std::string codec_;
|
|
|
|
|
2017-12-13 01:26:37 +00:00
|
|
|
// This does not have to be a set, it could be a list or vector because all we
|
|
|
|
// really care is whether there is more than one entry.
|
|
|
|
// Contains one entry if all the Representations have the same picture aspect
|
|
|
|
// ratio (@par attribute for AdaptationSet).
|
|
|
|
// There will be more than one entry if there are multiple picture aspect
|
|
|
|
// ratios.
|
|
|
|
// The @par attribute should only be set if there is exactly one entry
|
|
|
|
// in this set.
|
|
|
|
std::set<std::string> picture_aspect_ratio_;
|
|
|
|
|
2019-06-13 06:01:16 +00:00
|
|
|
// accessibilities of this AdaptationSet.
|
|
|
|
struct Accessibility {
|
|
|
|
std::string scheme;
|
|
|
|
std::string value;
|
|
|
|
};
|
|
|
|
std::vector<Accessibility> accessibilities_;
|
|
|
|
|
2017-12-13 01:26:37 +00:00
|
|
|
// The roles of this AdaptationSet.
|
|
|
|
std::set<Role> roles_;
|
|
|
|
|
|
|
|
// True iff all the segments are aligned.
|
|
|
|
SegmentAligmentStatus segments_aligned_;
|
|
|
|
bool force_set_segment_alignment_;
|
|
|
|
|
|
|
|
// Keeps track of segment start times of Representations.
|
2018-07-16 17:26:16 +00:00
|
|
|
// For static MPD, this will not be cleared, all the segment start times are
|
2017-12-13 01:26:37 +00:00
|
|
|
// stored in this. This should not out-of-memory for a reasonable length
|
|
|
|
// video and reasonable subsegment length.
|
2018-07-16 17:26:16 +00:00
|
|
|
// For dynamic MPD, the entries are deleted (see
|
|
|
|
// CheckDynamicSegmentAlignment() implementation comment) because storing the
|
|
|
|
// entire timeline is not reasonable and may cause an out-of-memory problem.
|
2017-12-13 01:26:37 +00:00
|
|
|
RepresentationTimeline representation_segment_start_times_;
|
|
|
|
|
2018-01-25 23:04:59 +00:00
|
|
|
// Record the original AdaptationSets the trick play stream belongs to. There
|
|
|
|
// can be more than one reference AdaptationSets as multiple streams e.g. SD
|
|
|
|
// and HD videos in different AdaptationSets can share the same trick play
|
|
|
|
// stream.
|
|
|
|
std::vector<const AdaptationSet*> trick_play_references_;
|
2023-09-08 21:41:41 +00:00
|
|
|
|
|
|
|
// Transfer characteristics.
|
|
|
|
uint32_t transfer_characteristics_ = 0;
|
2024-02-14 17:21:11 +00:00
|
|
|
|
|
|
|
// the command-line index for this AdaptationSet
|
|
|
|
std::optional<uint32_t> index_;
|
2017-12-13 01:26:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace shaka
|
2017-12-14 01:00:11 +00:00
|
|
|
|
|
|
|
#endif // PACKAGER_MPD_BASE_ADAPTATION_SET_H_
|