summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/httplive/PlaylistFetcher.cpp
diff options
context:
space:
mode:
authorLeena Winterrowd <lenhardw@codeaurora.org>2015-01-29 08:41:27 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-01-29 08:41:27 +0000
commit1eda9bfba04043c380666ba1ee86fd285b8ffbca (patch)
treeebf4401bd53fd91460b29eda1919179b75191767 /media/libstagefright/httplive/PlaylistFetcher.cpp
parent00dfe8432618c1d512557b2ed5910c44fc293948 (diff)
parentce25d85ad22e6df4b861d17e9e67cb6d0e62c363 (diff)
downloadframeworks_av-1eda9bfba04043c380666ba1ee86fd285b8ffbca.zip
frameworks_av-1eda9bfba04043c380666ba1ee86fd285b8ffbca.tar.gz
frameworks_av-1eda9bfba04043c380666ba1ee86fd285b8ffbca.tar.bz2
am ce25d85a: am a93fd2be: stagefright: httplive: Decouple block size from bandwidth estimate
* commit 'ce25d85ad22e6df4b861d17e9e67cb6d0e62c363': stagefright: httplive: Decouple block size from bandwidth estimate
Diffstat (limited to 'media/libstagefright/httplive/PlaylistFetcher.cpp')
-rw-r--r--media/libstagefright/httplive/PlaylistFetcher.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/media/libstagefright/httplive/PlaylistFetcher.cpp b/media/libstagefright/httplive/PlaylistFetcher.cpp
index 3f05208..1526af1 100644
--- a/media/libstagefright/httplive/PlaylistFetcher.cpp
+++ b/media/libstagefright/httplive/PlaylistFetcher.cpp
@@ -49,7 +49,8 @@ namespace android {
// static
const int64_t PlaylistFetcher::kMinBufferedDurationUs = 10000000ll;
const int64_t PlaylistFetcher::kMaxMonitorDelayUs = 3000000ll;
-const int32_t PlaylistFetcher::kDownloadBlockSize = 2048;
+// LCM of 188 (size of a TS packet) & 1k works well
+const int32_t PlaylistFetcher::kDownloadBlockSize = 47 * 1024;
const int32_t PlaylistFetcher::kNumSkipFrames = 5;
PlaylistFetcher::PlaylistFetcher(