diff options
Diffstat (limited to 'chromecast/media/cma/pipeline/decrypt_util.cc')
-rw-r--r-- | chromecast/media/cma/pipeline/decrypt_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromecast/media/cma/pipeline/decrypt_util.cc b/chromecast/media/cma/pipeline/decrypt_util.cc index 7f57cec..2acd5ea 100644 --- a/chromecast/media/cma/pipeline/decrypt_util.cc +++ b/chromecast/media/cma/pipeline/decrypt_util.cc @@ -23,7 +23,7 @@ class DecoderBufferClear : public DecoderBufferBase { // DecoderBufferBase implementation. StreamId stream_id() const override; - base::TimeDelta timestamp() const override; + int64_t timestamp() const override; void set_timestamp(base::TimeDelta timestamp) override; const uint8* data() const override; uint8* writable_data() const override; @@ -51,7 +51,7 @@ StreamId DecoderBufferClear::stream_id() const { return buffer_->stream_id(); } -base::TimeDelta DecoderBufferClear::timestamp() const { +int64_t DecoderBufferClear::timestamp() const { return buffer_->timestamp(); } |