mirror of
https://github.com/overte-org/overte.git
synced 2025-07-15 11:16:44 +02:00
17 lines
513 B
C++
17 lines
513 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"
|
|
|
|
MixedAudioStream::MixedAudioStream(int numFrameSamples, int numFramesCapacity, const InboundAudioStream::Settings& settings)
|
|
: InboundAudioStream(numFrameSamples, numFramesCapacity, settings)
|
|
{
|
|
}
|