blob: f27b8c4c69e36200e54c90cd0b4d78e366ef825b [file] [log] [blame]
Phil Burk64c55f42017-12-13 18:36:53 -08001/*
2 * Copyright 2017 The Android Open Source Project
3 *
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
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
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.
15 */
16
17#ifndef AUDIO_INPUT_STREAM_OPENSL_ES_H_
18#define AUDIO_INPUT_STREAM_OPENSL_ES_H_
19
20
21#include <SLES/OpenSLES.h>
22#include <SLES/OpenSLES_Android.h>
23
24#include "oboe/Oboe.h"
25#include "AudioStreamOpenSLES.h"
26
27namespace oboe {
28
Phil Burk420715b2017-12-14 12:26:38 -080029/**
30 * INTERNAL USE ONLY
31 */
32
Phil Burk64c55f42017-12-13 18:36:53 -080033class AudioInputStreamOpenSLES : public AudioStreamOpenSLES {
34public:
35 AudioInputStreamOpenSLES();
36 explicit AudioInputStreamOpenSLES(const AudioStreamBuilder &builder);
37
38 virtual ~AudioInputStreamOpenSLES();
Phil Burk9a147a12017-12-13 20:23:25 -080039
40 Result open() override;
41 Result close() override;
42
43 Result requestStart() override;
44 Result requestPause() override;
45 Result requestFlush() override;
46 Result requestStop() override;
47
48 Result waitForStateChange(StreamState currentState,
49 StreamState *nextState,
50 int64_t timeoutNanoseconds) override;
51
Phil Burk9b1c2ce2017-12-15 11:47:56 -080052 int chanCountToChanMask(int chanCount);
53
Phil Burkf2a70532018-05-09 18:36:21 -070054 int64_t getFramesWritten() const override;
55
56protected:
57
58 Result updateServiceFrameCounter() override;
59
Phil Burk6d952912017-12-14 10:10:00 -080060private:
Phil Burk9a147a12017-12-13 20:23:25 -080061
Phil Burk6d952912017-12-14 10:10:00 -080062 Result setRecordState(SLuint32 newState);
63
Phil Burk0cb67a62018-03-26 09:42:22 -070064 SLRecordItf mRecordInterface = nullptr;
Phil Burk64c55f42017-12-13 18:36:53 -080065};
66
67} // namespace oboe
68
69#endif //AUDIO_INPUT_STREAM_OPENSL_ES_H_