stream-manager: Revise description for route type 92/63992/1 accepted/tizen/common/20160406.144552 accepted/tizen/ivi/20160406.073822 accepted/tizen/mobile/20160406.073721 accepted/tizen/tv/20160406.073741 accepted/tizen/wearable/20160406.073759 submit/tizen/20160406.045648
authorSangchul Lee <sc11.lee@samsung.com>
Tue, 29 Mar 2016 08:08:37 +0000 (17:08 +0900)
committerSangchul Lee <sc11.lee@samsung.com>
Tue, 29 Mar 2016 08:08:37 +0000 (17:08 +0900)
[Version] 5.0.41
[Profile] Common
[Issue Type] Code clean up

Change-Id: Iaa729f3722441cbfa438fc5013fc9cdfecc2e800

packaging/pulseaudio-modules-tizen.spec
src/stream-manager.h

index f9fac64..cfd85ff 100644 (file)
@@ -1,6 +1,6 @@
 Name:             pulseaudio-modules-tizen
 Summary:          Pulseaudio modules for Tizen
-Version:          5.0.40
+Version:          5.0.41
 Release:          0
 Group:            Multimedia/Audio
 License:          LGPL-2.1+
index 9248e4b..ea6f6e6 100644 (file)
@@ -31,11 +31,11 @@ typedef enum _stream_type {
 } stream_type_t;
 
 typedef enum stream_route_type {
-    STREAM_ROUTE_TYPE_AUTO,               /* the policy of decision device(s) is automatic and it's routing path is particular to one device based on priority */
-    STREAM_ROUTE_TYPE_AUTO_LAST_CONNECTED,/* the policy of decision device(s) is automatic and it's routing path is particular to one device based on connected time */
-    STREAM_ROUTE_TYPE_AUTO_ALL,           /* the policy of decision device(s) is automatic and it's routing path can be several devices */
-    STREAM_ROUTE_TYPE_MANUAL,             /* the policy of decision device(s) is manual */
-    STREAM_ROUTE_TYPE_MANUAL_EXT,         /* the policy of decision device(s) is manual and it's routing path is for only external devices */
+    STREAM_ROUTE_TYPE_AUTO,               /* A stream is routed automatically to a particular device which has the highest priority. */
+    STREAM_ROUTE_TYPE_AUTO_LAST_CONNECTED,/* A stream is routed automatically to a particular device which has the latest connection time. */
+    STREAM_ROUTE_TYPE_AUTO_ALL,           /* A stream is routed automatically to several devices simultaneously. */
+    STREAM_ROUTE_TYPE_MANUAL,             /* A stream is routed manually to the device(s) selected by user. */
+    STREAM_ROUTE_TYPE_MANUAL_EXT,         /* A stream is routed manually only to the external device(s) selected by user. */
 } stream_route_type_t;
 
 typedef struct _hook_call_data_for_select {