mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
e028368c0f
MozReview-Commit-ID: CTCFloIUXKa --HG-- extra : rebase_source : b1c2073c638bb65c19a0f40e8d17e9a5bae15c98 extra : source : c6d854b3209e7de7d97153c0bfc492c1d5f1e6b5
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-*/
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef MOZILLA_AUDIOCAPTURESTREAM_H_
|
|
#define MOZILLA_AUDIOCAPTURESTREAM_H_
|
|
|
|
#include "MediaStreamGraph.h"
|
|
#include "AudioMixer.h"
|
|
#include "StreamTracks.h"
|
|
#include <algorithm>
|
|
|
|
namespace mozilla
|
|
{
|
|
|
|
class DOMMediaStream;
|
|
|
|
/**
|
|
* See MediaStreamGraph::CreateAudioCaptureStream.
|
|
*/
|
|
class AudioCaptureStream : public ProcessedMediaStream,
|
|
public MixerCallbackReceiver
|
|
{
|
|
public:
|
|
explicit AudioCaptureStream(TrackID aTrackId);
|
|
virtual ~AudioCaptureStream();
|
|
|
|
void Start();
|
|
|
|
void ProcessInput(GraphTime aFrom, GraphTime aTo, uint32_t aFlags) override;
|
|
|
|
protected:
|
|
void MixerCallback(AudioDataValue* aMixedBuffer, AudioSampleFormat aFormat,
|
|
uint32_t aChannels, uint32_t aFrames,
|
|
uint32_t aSampleRate) override;
|
|
AudioMixer mMixer;
|
|
TrackID mTrackId;
|
|
bool mStarted;
|
|
bool mTrackCreated;
|
|
};
|
|
}
|
|
|
|
#endif /* MOZILLA_AUDIOCAPTURESTREAM_H_ */
|