eas_mixbuf.c revision e442bb7cd6a085b33a4dd52c0e20a157ada7feb1
1cf2cfa174ca878c144e17e9fc60ca8e9070d7dededisonn@google.com/*----------------------------------------------------------------------------
2cf2cfa174ca878c144e17e9fc60ca8e9070d7dededisonn@google.com *
38cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * File:
4cf2cfa174ca878c144e17e9fc60ca8e9070d7dededisonn@google.com * eas_mixbuf.c
5cf2cfa174ca878c144e17e9fc60ca8e9070d7dededisonn@google.com *
6cf2cfa174ca878c144e17e9fc60ca8e9070d7dededisonn@google.com * Contents and purpose:
78cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * Contains a data allocation for synthesizer
8cf2cfa174ca878c144e17e9fc60ca8e9070d7dededisonn@google.com *
98cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * Copyright Sonic Network Inc. 2004
10cf2cfa174ca878c144e17e9fc60ca8e9070d7dededisonn@google.com
118cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * Licensed under the Apache License, Version 2.0 (the "License");
128cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * you may not use this file except in compliance with the License.
138cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * You may obtain a copy of the License at
148cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com *
158cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com *      http://www.apache.org/licenses/LICENSE-2.0
168cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com *
178cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * Unless required by applicable law or agreed to in writing, software
188cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * distributed under the License is distributed on an "AS IS" BASIS,
198cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
208cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * See the License for the specific language governing permissions and
218cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * limitations under the License.
228cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com *
238cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com *----------------------------------------------------------------------------
248cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com * Revision Control:
258cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com *   $Revision: 82 $
268cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com *   $Date: 2006-07-10 11:45:19 -0700 (Mon, 10 Jul 2006) $
278cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com *----------------------------------------------------------------------------
288cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com*/
298cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com
308cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com// includes
318cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com#include "eas_data.h"
328cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com#include "eas_mixer.h"
338cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com
348cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com// globals
358cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.comEAS_I32 eas_MixBuffer[BUFFER_SIZE_IN_MONO_SAMPLES * NUM_OUTPUT_CHANNELS];
368cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com
378cee797901763ab0922eb9ef484cfdcbc94bee54edisonn@google.com