mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 07:10:06 +02:00
18 lines
580 B
C++
18 lines
580 B
C++
//
|
|
// MixedAudioStream.cpp
|
|
// libraries/audio/src
|
|
//
|
|
// Created by Yixin Wang on 8/4/14.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "MixedAudioStream.h"
|
|
|
|
#include "AudioConstants.h"
|
|
|
|
MixedAudioStream::MixedAudioStream(int numFramesCapacity, int numStaticJitterFrames) :
|
|
InboundAudioStream(AudioConstants::STEREO, AudioConstants::NETWORK_FRAME_SAMPLES_PER_CHANNEL,
|
|
numFramesCapacity, numStaticJitterFrames) {}
|