Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Unified Diff: chromecast/media/cma/base/decoder_buffer_base.h

Issue 1494713002: [Chromecast] Move CastAudioDecoder out to chromecast/media/cma/decoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromecast/media/cma/base/decoder_buffer_base.h
diff --git a/chromecast/media/cma/base/decoder_buffer_base.h b/chromecast/media/cma/base/decoder_buffer_base.h
deleted file mode 100644
index 518771d38d580a14b45e66db18499511c40ec4bc..0000000000000000000000000000000000000000
--- a/chromecast/media/cma/base/decoder_buffer_base.h
+++ /dev/null
@@ -1,68 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_
-#define CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/time/time.h"
-#include "chromecast/public/media/cast_decoder_buffer.h"
-#include "chromecast/public/media/decrypt_context.h"
-
-namespace media {
-class DecoderBuffer;
-}
-
-namespace chromecast {
-namespace media {
-
-// DecoderBufferBase exposes only the properties of an audio/video buffer.
-// The way a DecoderBufferBase is created and organized in memory
-// is left as a detail of the implementation of derived classes.
-class DecoderBufferBase : public CastDecoderBuffer,
- public base::RefCountedThreadSafe<DecoderBufferBase> {
- public:
- // Partial CastDecoderBuffer implementation:
- DecryptContext* decrypt_context() const override;
-
- void set_decrypt_context(scoped_ptr<DecryptContext> context) {
- decrypt_context_ = context.Pass();
- }
-
- // Sets the PTS of the frame.
- virtual void set_timestamp(base::TimeDelta timestamp) = 0;
-
- // Gets a pointer to the frame data buffer.
- virtual uint8_t* writable_data() const = 0;
-
- virtual scoped_refptr<::media::DecoderBuffer> ToMediaBuffer() const = 0;
-
- protected:
- friend class base::RefCountedThreadSafe<DecoderBufferBase>;
-
- DecoderBufferBase();
- ~DecoderBufferBase() override;
-
- private:
- scoped_ptr<DecryptContext> decrypt_context_;
-
- DISALLOW_COPY_AND_ASSIGN(DecoderBufferBase);
-};
-
-inline DecoderBufferBase::DecoderBufferBase() {
-}
-
-inline DecoderBufferBase::~DecoderBufferBase() {
-}
-
-inline DecryptContext* DecoderBufferBase::decrypt_context() const {
- return decrypt_context_.get();
-}
-
-} // namespace media
-} // namespace chromecast
-
-#endif // CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_

Powered by Google App Engine
This is Rietveld 408576698