// Copyright 2017 The Chromium Authors // 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_MEDIARECORDER_AUDIO_TRACK_PCM_ENCODER_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_MEDIARECORDER_AUDIO_TRACK_PCM_ENCODER_H_ #include <memory> #include "media/base/audio_bus.h" #include "media/base/audio_parameters.h" #include "third_party/blink/renderer/modules/mediarecorder/audio_track_encoder.h" namespace blink { // A signed, 16-bit linear audio "encoder" that will just pass the audio right // back out again. class AudioTrackPcmEncoder : public AudioTrackEncoder { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_MEDIARECORDER_AUDIO_TRACK_PCM_ENCODER_H_