Remove 3.0 deprecated API implementation
[platform/core/api/audio-io.git] / include / CAudioOutput.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
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 __TIZEN_MEDIA_AUDIO_IO_CAUDIO_OUTPUT_H__
18 #define __TIZEN_MEDIA_AUDIO_IO_CAUDIO_OUTPUT_H__
19
20
21 #ifdef __cplusplus
22
23 #include "CAudioIODef.h"
24
25
26 namespace tizen_media_audio {
27
28
29     /**
30      * A class CAudioOutput that inherited from CAudioIO
31      */
32     class CAudioOutput : public CAudioIO {
33     public:
34         /* Constructor & Destructor */
35         CAudioOutput(CAudioInfo& info);
36         CAudioOutput(
37                     unsigned int            smapleRate,
38                     CAudioInfo::EChannel    channel,
39                     CAudioInfo::ESampleType sampleType,
40                     CAudioInfo::EAudioType  type);
41         ~CAudioOutput();
42
43         /* Overridden Handler */
44         virtual void onStream(CPulseAudioClient* pClient, size_t length);
45
46         /* Implemented Methods */
47         virtual void initialize();
48         virtual void finalize();
49
50         virtual void prepare();
51         virtual void unprepare();
52
53         virtual void pause();
54         virtual void resume();
55
56         virtual void drain();
57         virtual void flush();
58
59         virtual int  getBufferSize();
60
61         /* Methods */
62         size_t write(const void* buffer, size_t length);
63
64     private:
65         /* Private Methods */
66         void __setInit(bool flag);
67         bool __IsInit();
68         bool __IsReady();
69
70         bool __mIsUsedSyncWrite;
71         bool __mIsInit;
72     };
73
74
75 } /* namespace tizen_media_audio */
76
77 #endif
78 #endif /* __TIZEN_MEDIA_AUDIO_IO_CAUDIO_OUTPUT_H__ */