From bd809fc04c3f9c36f8d145999e5a008ffd90a10b Mon Sep 17 00:00:00 2001 From: Jacques Samain Date: Mon, 26 Jun 2017 14:11:58 +0200 Subject: Corrected typo Change-Id: I85fa9fd7adedcd26cf866847b3c747f99a14f2c3 Signed-off-by: Jacques Samain --- libdash/source/mpd/SegmentTemplate.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libdash/source/mpd/SegmentTemplate.h') diff --git a/libdash/source/mpd/SegmentTemplate.h b/libdash/source/mpd/SegmentTemplate.h index e5782a83..52aae8ab 100644 --- a/libdash/source/mpd/SegmentTemplate.h +++ b/libdash/source/mpd/SegmentTemplate.h @@ -36,8 +36,8 @@ namespace dash ISegment* ToBitstreamSwitchingSegment (const std::vector& baseurls, const std::string& representationID, uint32_t bandwidth) const; ISegment* GetMediaSegmentFromNumber (const std::vector& baseurls, const std::string& representationID, uint32_t bandwidth, uint32_t number) const; ISegment* GetIndexSegmentFromNumber (const std::vector& baseurls, const std::string& representationID, uint32_t bandwidth, uint32_t number) const; - ISegment* GetMediaSegmentFromTime (const std::vector& baseurls, const std::string& representationID, uint32_t bandwidth, uint32_t time) const; - ISegment* GetIndexSegmentFromTime (const std::vector& baseurls, const std::string& representationID, uint32_t bandwidth, uint32_t time) const; + ISegment* GetMediaSegmentFromTime (const std::vector& baseurls, const std::string& representationID, uint32_t bandwidth, uint64_t time) const; + ISegment* GetIndexSegmentFromTime (const std::vector& baseurls, const std::string& representationID, uint32_t bandwidth, uint64_t time) const; void SetMedia (const std::string& media); void SetIndex (const std::string& index); @@ -45,10 +45,10 @@ namespace dash void SetBitstreamSwitching (const std::string& bitstreamSwichting); private: - std::string ReplaceParameters (const std::string& uri, const std::string& representationID, uint32_t bandwidth, uint32_t number, uint32_t time) const; - void FormatChunk (std::string& uri, uint32_t number) const; + std::string ReplaceParameters (const std::string& uri, const std::string& representationID, uint32_t bandwidth, uint32_t number, uint64_t time) const; + void FormatChunk (std::string& uri, uint64_t number) const; ISegment* ToSegment (const std::string& uri, const std::vector& baseurls, const std::string& representationID, uint32_t bandwidth, - dash::metrics::HTTPTransactionType type, uint32_t number = 0, uint32_t time = 0) const; + dash::metrics::HTTPTransactionType type, uint32_t number = 0, uint64_t time = 0) const; std::string media; std::string index; -- cgit 1.2.3-korg