summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortkchin@webrtc.org <tkchin@webrtc.org>2014-10-31 00:14:39 +0000
committertkchin@webrtc.org <tkchin@webrtc.org>2014-10-31 00:14:39 +0000
commit723f605862d70ed27fd893b9f5fd49681b526c59 (patch)
tree0d1b1f0762ea06979e62f1af1379de84a2d813ad
parentb4c42cab03e19a3bb58ff8d6d6627ef4dba826a9 (diff)
downloadtalk-723f605862d70ed27fd893b9f5fd49681b526c59.tar.gz
arm64 iOS build.
Allows successful build of arm64 libraries using GYP_DEFINES="OS=ios target_arch=arm64 target_subarch=arm64". Note that not all libraries will be NEON optimized (eg common_audio), however most importantly libvpx will be. WEBRTC_ARCH_ARM needs to be defined so that libvpx doesn't post-process, which is significantly detrimental to performance. BUG=3898 R=kjellander@webrtc.org, pthatcher@webrtc.org Review URL: https://webrtc-codereview.appspot.com/26959004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/talk@7573 4adac7df-926f-26a2-2b94-8c16560cd09d
-rw-r--r--media/base/mediachannel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/mediachannel.h b/media/base/mediachannel.h
index dda9d1f..5e03ef9 100644
--- a/media/base/mediachannel.h
+++ b/media/base/mediachannel.h
@@ -971,7 +971,7 @@ struct BandwidthEstimationInfo {
// StatsOptions::include_received_propagation_stats is true.
int total_received_propagation_delta_ms;
std::vector<int> recent_received_propagation_delta_ms;
- std::vector<int64> recent_received_packet_group_arrival_time_ms;
+ std::vector<int64_t> recent_received_packet_group_arrival_time_ms;
};
struct VoiceMediaInfo {