[Version] 0.5.25
[Issue Type] New feature
Change-Id: I53bf840763f1bf127c3478edb4088bd5ecd6e9e1
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
SOUND_STREAM_TYPE_SOLO, /**< Sound stream type for solo */
SOUND_STREAM_TYPE_VOICE_RECOGNITION_SERVICE, /**< Sound stream type for voice recognition by service (Since 4.0) */
SOUND_STREAM_TYPE_MEDIA_COMPRESSED, /**< Sound stream type for compressed media (Since 4.0) */
+ SOUND_STREAM_TYPE_MEDIA_NETWORK_SOURCE, /**< Sound stream type for network source media (Since 5.5) */
} sound_stream_type_internal_e;
/**
Name: capi-media-sound-manager
Summary: Sound Manager library
-Version: 0.5.24
+Version: 0.5.25
Release: 0
Group: Multimedia/API
License: Apache-2.0
case SOUND_STREAM_TYPE_MEDIA_COMPRESSED:
*stream_type = "compressed-media";
break;
+ case SOUND_STREAM_TYPE_MEDIA_NETWORK_SOURCE:
+ *stream_type = "network-source-media";
+ break;
default:
LOGE("could not find the stream_type[%d] in this switch case statement", stream_type_enum);
ret = MM_ERROR_SOUND_INTERNAL;
pa_threaded_mainloop_unlock(virtual_stream->pa_mainloop);
return ret;
-}
\ No newline at end of file
+}