// Copyright 2017 Google Inc. All rights reserved. // // 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. #include "packager/mpd/base/bandwidth_estimator.h" #include "packager/mpd/base/media_info.pb.h" #include "packager/mpd/base/mpd_options.h" #include "packager/mpd/base/segment_info.h" #include "packager/mpd/base/xml/scoped_xml_ptr.h" #include #include #include namespace shaka { struct ContentProtectionElement; namespace xml { class XmlNode; class RepresentationXmlNode; } // namespace xml class RepresentationStateChangeListener { public: RepresentationStateChangeListener() {} virtual ~RepresentationStateChangeListener() {} /// Notifies the instance that a new (sub)segment was added to /// the Representation. /// @param start_time is the start time of the new segment. /// @param duration is the duration of the new segment. virtual void OnNewSegmentForRepresentation(uint64_t start_time, uint64_t duration) = 0; /// Notifies the instance that the frame rate was set for the /// Representation. /// @param frame_duration is the duration of a frame. /// @param timescale is the timescale of the Representation. virtual void OnSetFrameRateForRepresentation(uint32_t frame_duration, uint32_t timescale) = 0; }; /// Representation class contains references to a single media stream, as /// well as optional ContentProtection elements for that stream. class Representation { public: enum SuppressFlag { kSuppressWidth = 1, kSuppressHeight = 2, kSuppressFrameRate = 4, }; virtual ~Representation(); /// Tries to initialize the instance. If this does not succeed, the instance /// should not be used. /// @return true on success, false otherwise. bool Init(); /// Add a ContenProtection element to the representation. /// Representation does not add elements /// automatically to itself even if @a media_info passed to /// AdaptationSet::AddRepresentation() has @a media_info.protected_content /// 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 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); /// Add a media (sub)segment to the representation. /// AdaptationSet@{subsegmentAlignment,segmentAlignment} cannot be set /// if this is not called for all Representations. /// @param start_time is the start time for the (sub)segment, in units of the /// stream's time scale. /// @param duration is the duration of the segment, in units of the stream's /// time scale. /// @param size of the segment in bytes. virtual void AddNewSegment(uint64_t start_time, uint64_t duration, uint64_t size); /// 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. /// @param sample_duration is the duration of a sample. virtual void SetSampleDuration(uint32_t sample_duration); /// @return Copy of . xml::scoped_xml_ptr GetXml(); /// 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 element without a @width attribute. /// Note that it only applies to the next call to GetXml(), calling GetXml() /// again without calling this methods will return a element /// with the attribute. /// This may be called multiple times to set different (or the same) flags. void SuppressOnce(SuppressFlag flag); /// @return ID number for . uint32_t id() const { return id_; } protected: /// @param media_info is a MediaInfo containing information on the media. /// @a media_info.bandwidth is required for 'static' profile. If @a /// media_info.bandwidth is not present in 'dynamic' profile, this /// tries to estimate it using the info passed to AddNewSegment(). /// @param mpd_options is options for the entire MPD. /// @param representation_id is the numeric ID for the . /// @param state_change_listener is an event handler for state changes to /// the representation. If null, no event handler registered. Representation( const MediaInfo& media_info, const MpdOptions& mpd_options, uint32_t representation_id, std::unique_ptr state_change_listener); private: Representation(const Representation&) = delete; Representation& operator=(const Representation&) = delete; friend class AdaptationSet; template friend class MpdBuilderTest; bool AddLiveInfo(xml::RepresentationXmlNode* representation); // Returns true if |media_info_| has required fields to generate a valid // Representation. Otherwise returns false. bool HasRequiredMediaInfoFields(); // Return false if the segment should be considered a new segment. True if the // segment is contiguous. bool IsContiguous(uint64_t start_time, uint64_t duration, uint64_t size) const; // Remove elements from |segment_infos_| for dynamic live profile. Increments // |start_number_| by the number of segments removed. void SlideWindow(); // Note: Because 'mimeType' is a required field for a valid MPD, these return // strings. std::string GetVideoMimeType() const; std::string GetAudioMimeType() const; std::string GetTextMimeType() const; // Gets the earliest, normalized segment timestamp. Returns true if // successful, false otherwise. bool GetEarliestTimestamp(double* timestamp_seconds); // Init() checks that only one of VideoInfo, AudioInfo, or TextInfo is set. So // any logic using this can assume only one set. MediaInfo media_info_; std::list content_protection_elements_; std::list segment_infos_; const uint32_t id_; std::string mime_type_; std::string codecs_; BandwidthEstimator bandwidth_estimator_; const MpdOptions& mpd_options_; // startNumber attribute for SegmentTemplate. // Starts from 1. uint32_t start_number_; // If this is not null, then Representation is responsible for calling the // right methods at right timings. std::unique_ptr state_change_listener_; // Bit vector for tracking witch attributes should not be output. int output_suppression_flags_; }; } // namespace shaka