summaryrefslogtreecommitdiff
path: root/common_types.h
diff options
context:
space:
mode:
authorhenrike@webrtc.org <henrike@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-29 17:50:47 +0000
committerhenrike@webrtc.org <henrike@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-29 17:50:47 +0000
commit93ae82152688317e5e86de44dd27551dab9f0676 (patch)
tree6250fc10796f7a66bc069271c2f998c22f551ad8 /common_types.h
parent2a52e53cdc7b71583c9c7367456d81989574a401 (diff)
downloadwebrtc-93ae82152688317e5e86de44dd27551dab9f0676.tar.gz
Made common_types.h PacketTime declaration match https://code.google.com/p/webrtc/source/browse/trunk/talk/base/asyncpacketsocket.h#65
BUG=N/A R=mallinath@webrtc.org, niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/20399004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6020 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'common_types.h')
-rw-r--r--common_types.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/common_types.h b/common_types.h
index 68f2baa4..2d93102d 100644
--- a/common_types.h
+++ b/common_types.h
@@ -720,17 +720,17 @@ struct OverUseDetectorOptions {
// This structure will have the information about when packet is actually
// received by socket.
struct PacketTime {
- PacketTime() : timestamp(-1), max_error_us(-1) {}
- PacketTime(int64_t timestamp, int64_t max_error_us)
- : timestamp(timestamp), max_error_us(max_error_us) {
+ PacketTime() : timestamp(-1), not_before(-1) {}
+ PacketTime(int64_t timestamp, int64_t not_before)
+ : timestamp(timestamp), not_before(not_before) {
}
- int64_t timestamp; // Receive time after socket delivers the data.
- int64_t max_error_us; // Earliest possible time the data could have arrived,
- // indicating the potential error in the |timestamp|
- // value,in case the system is busy.
- // For example, the time of the last select() call.
- // If unknown, this value will be set to zero.
+ int64_t timestamp; // Receive time after socket delivers the data.
+ int64_t not_before; // Earliest possible time the data could have arrived,
+ // indicating the potential error in the |timestamp|
+ // value,in case the system is busy.
+ // For example, the time of the last select() call.
+ // If unknown, this value will be set to zero.
};
struct RTPHeaderExtension {