| Index: chromecast/media/cma/base/decoder_buffer_adapter.h
|
| diff --git a/chromecast/media/cma/base/decoder_buffer_adapter.h b/chromecast/media/cma/base/decoder_buffer_adapter.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9fe6da95ab7cb3208cd88a942d41252fddcc477e
|
| --- /dev/null
|
| +++ b/chromecast/media/cma/base/decoder_buffer_adapter.h
|
| @@ -0,0 +1,45 @@
|
| +// 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_ADAPTER_H_
|
| +#define CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_ADAPTER_H_
|
| +
|
| +#include "base/macros.h"
|
| +#include "base/memory/ref_counted.h"
|
| +#include "chromecast/media/cma/base/decoder_buffer_base.h"
|
| +
|
| +namespace media {
|
| +class DecoderBuffer;
|
| +}
|
| +
|
| +namespace chromecast {
|
| +namespace media {
|
| +
|
| +// DecoderBufferAdapter wraps a ::media::DecoderBuffer
|
| +// into a DecoderBufferBase.
|
| +class DecoderBufferAdapter : public DecoderBufferBase {
|
| + public:
|
| + explicit DecoderBufferAdapter(
|
| + const scoped_refptr< ::media::DecoderBuffer>& buffer);
|
| +
|
| + // DecoderBufferBase implementation.
|
| + virtual base::TimeDelta timestamp() const OVERRIDE;
|
| + virtual const uint8* data() const OVERRIDE;
|
| + virtual uint8* writable_data() const OVERRIDE;
|
| + virtual int data_size() const OVERRIDE;
|
| + virtual const ::media::DecryptConfig* decrypt_config() const OVERRIDE;
|
| + virtual bool end_of_stream() const OVERRIDE;
|
| +
|
| + private:
|
| + virtual ~DecoderBufferAdapter();
|
| +
|
| + scoped_refptr< ::media::DecoderBuffer> const buffer_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(DecoderBufferAdapter);
|
| +};
|
| +
|
| +} // namespace media
|
| +} // namespace chromecast
|
| +
|
| +#endif // CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_ADAPTER_H_
|
|
|