sink, source: Add variables for managing devices 56/169056/6
authorSangchul Lee <sc11.lee@samsung.com>
Fri, 2 Feb 2018 05:10:53 +0000 (14:10 +0900)
committerSangchul Lee <sc11.lee@samsung.com>
Fri, 9 Feb 2018 06:43:14 +0000 (06:43 +0000)
original patches are as below
 : a0318cb9f5eec9b5e0962e1fd8c4579041525a94 - sc11.lee@samsung.com - 2015-10-06 - Add variable for checking if it uses internal codec in sink/source
 : f072f302c387bd4f2a25950734681c7eb8145b01 - jho.mok@samsung.com - 2015-06-24 - Add device manager, on disabled status Gather module-policy related files into tizen directory

[Version] 11.1-7
[Issue Type] feature

Change-Id: Icc89db2ad6f05bad422b010830240845761a8f87
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
packaging/pulseaudio.spec
src/pulsecore/sink.h
src/pulsecore/source.h

index d703f93..35a8f35 100644 (file)
@@ -3,7 +3,7 @@
 Name:             pulseaudio
 Summary:          Improved Linux sound server
 Version:          11.1
-Release:          6
+Release:          7
 Group:            Multimedia/Audio
 License:          LGPL-2.1
 URL:              http://pulseaudio.org
index 2a0eeca..d211082 100644 (file)
@@ -310,6 +310,10 @@ struct pa_sink {
     FILE *pcm_dump_fp;
     char *dump_path;
 #endif
+#ifdef __TIZEN__
+    void *device_item;
+    bool use_internal_codec;
+#endif
     void *userdata;
 };
 
index 6ca274a..2ce8a0d 100644 (file)
@@ -252,6 +252,10 @@ struct pa_source {
     FILE *pcm_dump_fp;
     char *dump_path;
 #endif
+#ifdef __TIZEN__
+    void *device_item;
+    bool use_internal_codec;
+#endif
     void *userdata;
 };