7 #ifndef MPD_BASE_SIMPLE_MPD_NOTIFIER_H_
8 #define MPD_BASE_SIMPLE_MPD_NOTIFIER_H_
15 #include "packager/base/gtest_prod_util.h"
16 #include "packager/base/synchronization/lock.h"
17 #include "packager/mpd/base/mpd_notifier.h"
18 #include "packager/mpd/base/mpd_notifier_util.h"
25 class SimpleMpdNotifierTest;
34 const std::vector<std::string>& base_urls,
35 const std::string& output_path);
43 uint32_t sample_duration)
override;
47 uint64_t size)
override;
49 const std::string& drm_uuid,
50 const std::vector<uint8_t>& new_key_id,
51 const std::vector<uint8_t>& new_pssh)
override;
55 bool Flush()
override;
59 friend class SimpleMpdNotifierTest;
63 return mpd_builder_.get();
67 void SetMpdBuilderForTesting(std::unique_ptr<MpdBuilder> mpd_builder) {
68 mpd_builder_ = std::move(mpd_builder);
72 std::string output_path_;
73 std::unique_ptr<MpdBuilder> mpd_builder_;
76 typedef std::map<std::string, AdaptationSet*> AdaptationSetMap;
77 AdaptationSetMap adaptation_set_map_;
79 typedef std::map<uint32_t, Representation*> RepresentationMap;
80 RepresentationMap representation_map_;
87 #endif // MPD_BASE_SIMPLE_MPD_NOTIFIER_H_
This class generates DASH MPDs (Media Presentation Descriptions).
bool AddContentProtectionElement(uint32_t id, const ContentProtectionElement &content_protection_element) override
bool NotifyNewSegment(uint32_t id, uint64_t start_time, uint64_t duration, uint64_t size) override
bool NotifySampleDuration(uint32_t container_id, uint32_t sample_duration) override
bool NotifyEncryptionUpdate(uint32_t container_id, const std::string &drm_uuid, const std::vector< uint8_t > &new_key_id, const std::vector< uint8_t > &new_pssh) override
bool NotifyNewContainer(const MediaInfo &media_info, uint32_t *id) override