blob: ab27cddaf8517e4b91534ce46db2637b8e9b7e7a [file] [log] [blame]
// Copyright 2020 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 THIRD_PARTY_BLINK_RENDERER_MODULES_WEBCODECS_AUDIO_FRAME_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBCODECS_AUDIO_FRAME_H_
#include "media/base/audio_buffer.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/modules/webaudio/audio_buffer.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
namespace blink {
class ExceptionState;
class AudioFrameInit;
class AudioFrameSerializationData;
class MODULES_EXPORT AudioFrame final : public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static AudioFrame* Create(AudioFrameInit*, ExceptionState&);
// Internal constructor for creating from media::AudioDecoder output.
explicit AudioFrame(scoped_refptr<media::AudioBuffer>);
explicit AudioFrame(std::unique_ptr<AudioFrameSerializationData> data);
// audio_frame.idl implementation.
explicit AudioFrame(AudioFrameInit*);
void close();
uint64_t timestamp() const;
AudioBuffer* buffer() const;
// Returns audio data that will outlive |this| being closed() or destroyed.
std::unique_ptr<AudioFrameSerializationData> GetSerializationData();
// GarbageCollected override.
void Trace(Visitor*) const override;
private:
uint64_t timestamp_;
Member<AudioBuffer> buffer_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBCODECS_AUDIO_FRAME_H_