fixup! Change reference link in doc file
[platform/core/api/audio-io.git] / include / CPulseStreamSpec.h
index d09a194..44ffe29 100644 (file)
@@ -33,35 +33,37 @@ namespace tizen_media_audio {
     class CPulseStreamSpec {
     public:
         /* Enums */
-        enum EStreamLatency {
+        enum class EStreamLatency : unsigned int {
             STREAM_LATENCY_INPUT_LOW,
             STREAM_LATENCY_INPUT_MID,
             STREAM_LATENCY_INPUT_HIGH,
             STREAM_LATENCY_INPUT_VOIP,
+            STREAM_LATENCY_INPUT_DEFAULT,
             STREAM_LATENCY_OUTPUT_LOW,
             STREAM_LATENCY_OUTPUT_MID,
             STREAM_LATENCY_OUTPUT_HIGH,
             STREAM_LATENCY_OUTPUT_VOIP,
+            STREAM_LATENCY_OUTPUT_DEFAULT,
+            STREAM_LATENCY_OUTPUT_DEFAULT_ASYNC,
             STREAM_LATENCY_MAX
         };
 
         /* Constructor & Destructor */
-        CPulseStreamSpec() throw (CAudioError);
-        CPulseStreamSpec(EStreamLatency latency, CAudioInfo& audioInfo) throw (CAudioError);
-        CPulseStreamSpec(EStreamLatency latency, CAudioInfo& audioInfo, int customLatency) throw (CAudioError);
-        ~CPulseStreamSpec();
+        CPulseStreamSpec();
+        CPulseStreamSpec(EStreamLatency latency, CAudioInfo& audioInfo);
+        ~CPulseStreamSpec() = default;
 
         /* Setter & Getter */
-        EStreamLatency getStreamLatency();
-        const char*    getStreamLatencyToString();
-        CAudioInfo     getAudioInfo();
-        pa_sample_spec getSampleSpec();
-        pa_channel_map getChannelMap();
-        const char*    getStreamName();
+        EStreamLatency getStreamLatency() noexcept;
+        const char*    getStreamLatencyToString() noexcept;
+        CAudioInfo&    getAudioInfo() noexcept;
+        pa_sample_spec getSampleSpec() noexcept;
+        pa_channel_map getChannelMap() noexcept;
+        const char*    getStreamName() noexcept;
 
     private:
         /* Private Methods */
-        void __adjustSpec() throw (CAudioError);
+        void __adjustSpec() noexcept;
 
         /* Members */
         EStreamLatency __mLatency;