summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Shih <robertshih@google.com>2015-02-04 21:35:41 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-04 21:35:41 +0000
commitc42ab4fcd42875ef74f8e9b8d8150f7bcfd0cd3b (patch)
treeee11d0c8c9c4d1cdf46083ba49fea6370ada2c66
parentd6ad19fef4d5230f1003a3adc756d30b9338cdcf (diff)
parent7dbbc7ec95c3040668388162a0ffbc45b68af6f1 (diff)
downloadframeworks_av-c42ab4fcd42875ef74f8e9b8d8150f7bcfd0cd3b.zip
frameworks_av-c42ab4fcd42875ef74f8e9b8d8150f7bcfd0cd3b.tar.gz
frameworks_av-c42ab4fcd42875ef74f8e9b8d8150f7bcfd0cd3b.tar.bz2
am 7dbbc7ec: am a291dabc: am 6fbcf633: Merge "httplive: Set start time and segment start time in conjunction." into lmp-mr1-dev
* commit '7dbbc7ec95c3040668388162a0ffbc45b68af6f1': httplive: Set start time and segment start time in conjunction.
-rw-r--r--media/libstagefright/httplive/LiveSession.cpp13
-rw-r--r--media/libstagefright/httplive/PlaylistFetcher.cpp7
2 files changed, 14 insertions, 6 deletions
diff --git a/media/libstagefright/httplive/LiveSession.cpp b/media/libstagefright/httplive/LiveSession.cpp
index c25f3d4..d0f3bc2 100644
--- a/media/libstagefright/httplive/LiveSession.cpp
+++ b/media/libstagefright/httplive/LiveSession.cpp
@@ -1508,14 +1508,15 @@ void LiveSession::onChangeConfiguration3(const sp<AMessage> &msg) {
if (meta != NULL && !meta->findInt32("discontinuity", &type)) {
int64_t tmpUs;
+ int64_t tmpSegmentUs;
+
CHECK(meta->findInt64("timeUs", &tmpUs));
- if (startTimeUs < 0 || tmpUs < startTimeUs) {
+ CHECK(meta->findInt64("segmentStartTimeUs", &tmpSegmentUs));
+ if (startTimeUs < 0 || tmpSegmentUs < segmentStartTimeUs) {
+ startTimeUs = tmpUs;
+ segmentStartTimeUs = tmpSegmentUs;
+ } else if (tmpSegmentUs == segmentStartTimeUs && tmpUs < startTimeUs) {
startTimeUs = tmpUs;
- }
-
- CHECK(meta->findInt64("segmentStartTimeUs", &tmpUs));
- if (segmentStartTimeUs < 0 || tmpUs < segmentStartTimeUs) {
- segmentStartTimeUs = tmpUs;
}
int32_t seq;
diff --git a/media/libstagefright/httplive/PlaylistFetcher.cpp b/media/libstagefright/httplive/PlaylistFetcher.cpp
index 0630a5b..1227600 100644
--- a/media/libstagefright/httplive/PlaylistFetcher.cpp
+++ b/media/libstagefright/httplive/PlaylistFetcher.cpp
@@ -757,6 +757,9 @@ void PlaylistFetcher::onDownloadNext() {
mSeqNumber = firstSeqNumberInPlaylist;
}
} else {
+ // When seeking mSegmentStartTimeUs is unavailable (< 0), we
+ // use mStartTimeUs (client supplied timestamp) to determine both start segment
+ // and relative position inside a segment
mSeqNumber = getSeqNumberForTime(mStartTimeUs);
mStartTimeUs -= getSegmentStartTimeUs(mSeqNumber);
}
@@ -765,6 +768,10 @@ void PlaylistFetcher::onDownloadNext() {
mStartTimeUs, mSeqNumber, firstSeqNumberInPlaylist,
lastSeqNumberInPlaylist);
} else {
+ // When adapting or track switching, mSegmentStartTimeUs (relative
+ // to media time 0) is used to determine the start segment; mStartTimeUs (absolute
+ // timestamps coming from the media container) is used to determine the position
+ // inside a segments.
mSeqNumber = getSeqNumberForTime(mSegmentStartTimeUs);
if (mAdaptive) {
// avoid double fetch/decode