HomeSort by relevance Sort by last modified time
    Searched defs:DecodeTimestamp (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/media/cast/test/utility/
audio_utility.cc 150 bool DecodeTimestamp(const float* samples, size_t length, uint16* timestamp) {
  /external/chromium_org/media/base/
stream_parser_buffer.h 18 // Making DecodeTimestamp a different type makes it easier to determine whether
21 class DecodeTimestamp {
23 DecodeTimestamp() {}
24 DecodeTimestamp(const DecodeTimestamp& rhs) : ts_(rhs.ts_) { }
25 DecodeTimestamp& operator=(const DecodeTimestamp& rhs) {
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_;
    [all...]

Completed in 544 milliseconds