summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/httplive/LiveSession.h
diff options
context:
space:
mode:
authorChong Zhang <chz@google.com>2015-03-30 12:33:56 -0700
committerChong Zhang <chz@google.com>2015-03-30 12:35:24 -0700
commit765f27c2376e83766d9e1d8f8136025c5437ce49 (patch)
tree7af72968414ed25f58f27cf1aa7f4f0a865364b7 /media/libstagefright/httplive/LiveSession.h
parent46bd6b5bb8f1dfd26977a04ee6fcf9641321ca29 (diff)
downloadframeworks_av-765f27c2376e83766d9e1d8f8136025c5437ce49.zip
frameworks_av-765f27c2376e83766d9e1d8f8136025c5437ce49.tar.gz
frameworks_av-765f27c2376e83766d9e1d8f8136025c5437ce49.tar.bz2
fix build break in clang
Change-Id: Iff2ca5d1e800d30943de12191bfe6c43d6a2c7f6
Diffstat (limited to 'media/libstagefright/httplive/LiveSession.h')
-rw-r--r--media/libstagefright/httplive/LiveSession.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/media/libstagefright/httplive/LiveSession.h b/media/libstagefright/httplive/LiveSession.h
index d11675b..3d62cab 100644
--- a/media/libstagefright/httplive/LiveSession.h
+++ b/media/libstagefright/httplive/LiveSession.h
@@ -122,14 +122,14 @@ private:
};
// Bandwidth Switch Mark Defaults
- static const int64_t kUpSwitchMark = 25000000ll;
- static const int64_t kDownSwitchMark = 18000000ll;
- static const int64_t kUpSwitchMargin = 5000000ll;
+ static const int64_t kUpSwitchMarkUs;
+ static const int64_t kDownSwitchMarkUs;
+ static const int64_t kUpSwitchMarginUs;
// Buffer Prepare/Ready/Underflow Marks
- static const int64_t kReadyMark = 5000000ll;
- static const int64_t kPrepareMark = 1500000ll;
- static const int64_t kUnderflowMark = 1000000ll;
+ static const int64_t kReadyMarkUs;
+ static const int64_t kPrepareMarkUs;
+ static const int64_t kUnderflowMarkUs;
struct BandwidthEstimator;
struct BandwidthItem {