| Index: webrtc/modules/pacing/include/packet_router.h
|
| diff --git a/webrtc/modules/pacing/include/packet_router.h b/webrtc/modules/pacing/include/packet_router.h
|
| index 7a65295f83a3e2054243d5fc3759eb03be87a331..2e80e1ecde17c0b3de0fe03bc09f9784555bc249 100644
|
| --- a/webrtc/modules/pacing/include/packet_router.h
|
| +++ b/webrtc/modules/pacing/include/packet_router.h
|
| @@ -13,6 +13,7 @@
|
|
|
| #include <list>
|
|
|
| +#include "webrtc/base/atomicops.h"
|
| #include "webrtc/base/constructormagic.h"
|
| #include "webrtc/base/criticalsection.h"
|
| #include "webrtc/base/scoped_ptr.h"
|
| @@ -58,7 +59,7 @@ class PacketRouter : public PacedSender::Callback,
|
| // Map from ssrc to sending rtp module.
|
| std::list<RtpRtcp*> rtp_modules_ GUARDED_BY(modules_lock_);
|
|
|
| - volatile int transport_seq_;
|
| + rtc::AtomicInt transport_seq_;
|
|
|
| RTC_DISALLOW_COPY_AND_ASSIGN(PacketRouter);
|
| };
|
|
|