added k60d100m project
[adk-bluetooth-test.git] / adk-stack / adapter / Audio.c
blob2ea363904b643be7d7ebe66f905a1c71f79e4f54
1 /*
2 * Copyright (C) 2012 The Android Open Source Project
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 #define ADK_INTERNAL
17 #include "fwk.h"
18 #include "Audio.h"
19 #include "coop.h"
21 #include "msi.h"
24 #define DEFAULT_AUDIO_SAMPLERATE 44100
27 void audioInit(void)
29 msi_snd_init();
32 void audioOn(int source, uint32_t samplerate)
34 msi_snd_set_format((uint32_t)samplerate, 16, 2);
35 // todo add umute
38 void audioOff(int source)
40 //to do add mute
43 void audioDeinit(void)
45 msi_snd_deinit();
48 void audioSetSample(int source, uint32_t samplerate)
50 //msi_snd_set_format((uint32_t)samplerate, 16, 2);
53 void audioAddBuffer(int source, const uint16_t* samples, uint32_t numSamples) /* call by BT */
55 msi_snd_write((uint_8 *)samples,numSamples);