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;
41 uint32_t sample_duration)
override;
45 uint64_t size)
override;
47 const std::string& drm_uuid,
48 const std::vector<uint8_t>& new_key_id,
49 const std::vector<uint8_t>& new_pssh)
override;
53 bool Flush()
override;
57 friend class SimpleMpdNotifierTest;
61 return mpd_builder_.get();
65 void SetMpdBuilderForTesting(std::unique_ptr<MpdBuilder> mpd_builder) {
66 mpd_builder_ = std::move(mpd_builder);
70 std::string output_path_;
71 std::unique_ptr<MpdBuilder> mpd_builder_;
74 typedef std::map<std::string, AdaptationSet*> AdaptationSetMap;
75 AdaptationSetMap adaptation_set_map_;
77 typedef std::map<uint32_t, Representation*> RepresentationMap;
78 RepresentationMap representation_map_;
85 #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