Home
last modified time | relevance | path

Searched refs:ts_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/media/base/
Dstream_parser_buffer.h24 DecodeTimestamp(const DecodeTimestamp& rhs) : ts_(rhs.ts_) { } in DecodeTimestamp()
27 ts_ = rhs.ts_;
33 bool operator<(const DecodeTimestamp& rhs) const { return ts_ < rhs.ts_; }
34 bool operator>(const DecodeTimestamp& rhs) const { return ts_ > rhs.ts_; }
35 bool operator==(const DecodeTimestamp& rhs) const { return ts_ == rhs.ts_; }
36 bool operator!=(const DecodeTimestamp& rhs) const { return ts_ != rhs.ts_; }
37 bool operator>=(const DecodeTimestamp& rhs) const { return ts_ >= rhs.ts_; }
38 bool operator<=(const DecodeTimestamp& rhs) const { return ts_ <= rhs.ts_; }
41 return ts_ - rhs.ts_;
45 ts_ += rhs;
[all …]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
Ddelay_manager_unittest.cc44 uint32_t ts_; member in webrtc::DelayManagerTest
50 ts_(0x12345678) { in DelayManagerTest()
65 EXPECT_EQ(0, dm_->Update(seq_no_, ts_, kFs)); in InsertNextPacket()
67 ts_ += kTsIncrement; in InsertNextPacket()
Dpacket_buffer_unittest.cc34 uint32_t ts_; member in webrtc::PacketGenerator
42 ts_(ts), in PacketGenerator()
50 packet->header.timestamp = ts_; in NextPacket()
60 ts_ += frame_size_; in NextPacket()
66 ts_ += frame_size_; in SkipPacket()