// Copyright 2014 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 #ifndef MPD_BASE_SIMPLE_MPD_NOTIFIER_H_ #define MPD_BASE_SIMPLE_MPD_NOTIFIER_H_ #include #include #include #include #include "packager/base/synchronization/lock.h" #include "packager/mpd/base/mpd_notifier.h" #include "packager/mpd/base/mpd_notifier_util.h" namespace shaka { class AdaptationSet; class MpdBuilder; class Representation; struct MpdOptions; /// A simple MpdNotifier implementation which receives muxer listener event and /// generates an Mpd file. class SimpleMpdNotifier : public MpdNotifier { public: explicit SimpleMpdNotifier(const MpdOptions& mpd_options); ~SimpleMpdNotifier() override; /// None of the methods write out the MPD file until Flush() is called. /// @name MpdNotifier implemetation overrides. /// @{ bool Init() override; bool NotifyNewContainer(const MediaInfo& media_info, uint32_t* id) override; bool NotifyAvailabilityTimeOffset(uint32_t container_id) override; bool NotifySampleDuration(uint32_t container_id, int32_t sample_duration) override; bool NotifySegmentDuration(uint32_t container_id) override; bool NotifyNewSegment(uint32_t container_id, int64_t start_time, int64_t duration, uint64_t size) override; bool NotifyCueEvent(uint32_t container_id, int64_t timestamp) override; bool NotifyEncryptionUpdate(uint32_t container_id, const std::string& drm_uuid, const std::vector& new_key_id, const std::vector& new_pssh) override; bool NotifyMediaInfoUpdate(uint32_t container_id, const MediaInfo& media_info) override; bool Flush() override; /// @} private: SimpleMpdNotifier(const SimpleMpdNotifier&) = delete; SimpleMpdNotifier& operator=(const SimpleMpdNotifier&) = delete; friend class SimpleMpdNotifierTest; // Testing only method. Returns a pointer to MpdBuilder. MpdBuilder* MpdBuilderForTesting() const { return mpd_builder_.get(); } // Testing only method. Sets mpd_builder_. void SetMpdBuilderForTesting(std::unique_ptr mpd_builder) { mpd_builder_ = std::move(mpd_builder); } // MPD output path. std::string output_path_; std::unique_ptr mpd_builder_; bool content_protection_in_adaptation_set_ = true; base::Lock lock_; uint32_t next_adaptation_set_id_ = 0; // Maps Representation ID to Representation. std::map representation_map_; // Maps Representation ID to AdaptationSet. This is for updating the PSSH. std::map representation_id_to_adaptation_set_; }; } // namespace shaka #endif // MPD_BASE_SIMPLE_MPD_NOTIFIER_H_