Abandon internal focus if it exists when setStreamInfo() is called
[platform/core/api/audio-io.git] / src / audio_io.c
index 8450a4c..1cf3c9a 100644 (file)
 #include <cpp_audio_io.h>
 #include <dlog.h>
 
+#ifdef LOG_TAG
+#undef LOG_TAG
+#endif
+#define LOG_TAG "TIZEN_N_AUDIO_IO"
+
 #define DEPRECATED_WARN() do { \
        LOGW("DEPRECATION WARNING: %s() is deprecated and will be removed from next release.", __func__); \
 } while (0)
@@ -43,12 +48,6 @@ int audio_in_destroy(audio_in_h input)
        return cpp_audio_in_destroy(input);
 }
 
-/* FIXME : This will be removed after migration */
-int audio_in_set_stream_info(audio_in_h input, sound_stream_info_h stream_info)
-{
-       return cpp_audio_in_set_sound_stream_info(input, stream_info);
-}
-
 int audio_in_set_sound_stream_info(audio_in_h input, sound_stream_info_h stream_info)
 {
        return cpp_audio_in_set_sound_stream_info(input, stream_info);
@@ -170,12 +169,6 @@ int audio_out_destroy(audio_out_h output)
        return cpp_audio_out_destroy(output);
 }
 
-/* FIXME : This will be removed after migration */
-int audio_out_set_stream_info(audio_out_h output, sound_stream_info_h stream_info)
-{
-       return cpp_audio_out_set_sound_stream_info(output, stream_info);
-}
-
 int audio_out_set_sound_stream_info(audio_out_h output, sound_stream_info_h stream_info)
 {
        return cpp_audio_out_set_sound_stream_info(output, stream_info);