shaka-packager/mpd/base/mpd_utils.h

37 lines
1.1 KiB
C
Raw Normal View History

// Funtions used by MpdBuilder class to generate an MPD file.
#ifndef MPD_BASE_MPD_UTILS_H_
#define MPD_BASE_MPD_UTILS_H_
#include <string>
#include "base/basictypes.h"
#include "mpd/base/media_info.pb.h"
#include "third_party/libxml/src/include/libxml/tree.h"
namespace dash_packager {
class ContentProtectionElement;
bool HasVODOnlyFields(const MediaInfo& media_info);
bool HasLiveOnlyFields(const MediaInfo& media_info);
// If |content_protection_element| has 'value' or 'schemeIdUri' set but it's
// also in the map, then this removes them from the map.
// |content_protection_element| cannot be NULL.
void RemoveDuplicateAttributes(
ContentProtectionElement* content_protection_element);
// Returns a 'codecs' string that has all the video and audio codecs joined with
// comma.
std::string GetCodecs(const MediaInfo& media_info);
std::string SecondsToXmlDuration(float seconds);
// Tries to get "duration" attribute from |node|. On success |duration| is set.
bool GetDurationAttribute(xmlNodePtr node, float* duration);
} // namespace dash_packager
#endif // MPD_BASE_MPD_UTILS_H_