platform/core/uifw/tts.git
3 years agoUpdate version (1.60.6) 71/239371/1
sooyeon.kim [Fri, 24 Jul 2020 08:16:32 +0000 (17:16 +0900)]
Update version (1.60.6)

Change-Id: I72c2025196826a6f009af6f6c14aaa9448d921a8
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoAdd a checker whether engine is launched or not 70/239370/1
sooyeon.kim [Fri, 24 Jul 2020 08:14:15 +0000 (17:14 +0900)]
Add a checker whether engine is launched or not

Change-Id: I8d49118dc17c4112cfce15b4a74856922f798669
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoRemove chown setting 67/239367/1
sooyeon.kim [Fri, 24 Jul 2020 07:48:53 +0000 (16:48 +0900)]
Remove chown setting

Change-Id: I9b8b5ab09b6bbbdd2580ed71bb1fa157e52eb060
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoUpdate version (1.60.5) 65/239365/1
sooyeon.kim [Fri, 24 Jul 2020 07:43:44 +0000 (16:43 +0900)]
Update version (1.60.5)

Change-Id: Ie641206b64b66c6bad2e4d02e40a37d6d6454511
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoAdd a logic to check activated thread before destroying tts client 64/239364/1
sooyeon.kim [Fri, 24 Jul 2020 07:40:49 +0000 (16:40 +0900)]
Add a logic to check activated thread before destroying tts client

Change-Id: I326f171deee0dee502a6ff062fd459d86cde2697
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoFix to avoid paused_data crash 60/239360/1
sooyeon.kim [Fri, 24 Jul 2020 07:13:56 +0000 (16:13 +0900)]
Fix to avoid paused_data crash

Change-Id: Ia0db6b669f802ae01adfbe6e4379430ebf985104
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoChange the limit of timeout 59/239359/1
sooyeon.kim [Fri, 24 Jul 2020 07:10:04 +0000 (16:10 +0900)]
Change the limit of timeout

Change-Id: I05144fe9aef767dc443c76aff787c86cdc0662db
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoAdd a logic to check tts engine is installed and launched 58/239358/1
sooyeon.kim [Fri, 24 Jul 2020 07:03:26 +0000 (16:03 +0900)]
Add a logic to check tts engine is installed and launched

Change-Id: Ic7e6adb8e3fc170b793317627d3403fb6a315f47
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoversion up to 1.60.4 17/238217/3
Suyeon Hwang [Thu, 9 Jul 2020 10:31:07 +0000 (19:31 +0900)]
version up to 1.60.4

Change-Id: Iced20dca6e4c58c3682b44407a76f2c2b2e72217
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
3 years agoAdd null check about client list from tts_client 16/238216/3
Suyeon Hwang [Thu, 9 Jul 2020 10:22:16 +0000 (19:22 +0900)]
Add null check about client list from tts_client

Change-Id: I6ae21d38aa2f3878e90532ca73e63626ce8bfd67
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
3 years agoAdd mutex lock for global variables in tts_client.c 07/238207/1
Suyeon Hwang [Thu, 9 Jul 2020 09:24:55 +0000 (18:24 +0900)]
Add mutex lock for global variables in tts_client.c

Global variables, g_client_list and g_allocated_handle, can occur thread safety issue, because
any threads can access these variables.

This patch makes mutex lock for these variables to avoid thread safety issue.

Change-Id: Ie7a2be075ec07d3366b8ee76389a78c91e1a17bb
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
3 years agoMerge "Revert "Add mutex lock for global variables in tts_client"" into tizen
Suyeon Hwang [Thu, 9 Jul 2020 09:19:23 +0000 (09:19 +0000)]
Merge "Revert "Add mutex lock for global variables in tts_client"" into tizen

3 years agoRevert "Add mutex lock for global variables in tts_client" 01/238201/1
Suyeon Hwang [Thu, 9 Jul 2020 09:11:55 +0000 (09:11 +0000)]
Revert "Add mutex lock for global variables in tts_client"

This reverts commit 1ec7dcbf00714896f738c92cbf89693a880032cf.

Reason for revert: not intended merge

Change-Id: I6ac66782c09d3797f5f4a00da98f9c5bab8ce7e8

3 years agoRevert "Return copy of g_client_list" 00/238200/1
Suyeon Hwang [Thu, 9 Jul 2020 09:11:36 +0000 (09:11 +0000)]
Revert "Return copy of g_client_list"

This reverts commit b8d4d9fd6809f68d9df8255b47dea97f52fe1f25.

Reason for revert: not intended merge

Change-Id: I56fe5121e5c9590af729386945d74e80657ff315

3 years agoReturn copy of g_client_list 48/231548/3
Suyeon Hwang [Wed, 22 Apr 2020 09:08:40 +0000 (18:08 +0900)]
Return copy of g_client_list

This patch changes the return value of tts_client_get_client_list() to copy of g_client_list.
This change supports safe use of g_client_list and avoids thread safety issues.

Originally, this function returns g_client_list directly.
This kind of access is dangerous, because it allows unmanaged modification of list.
This may occur thread safety issue or dangerous memory access.
However, if function returns copy of g_client_list, g_client_list avoids dangerous access.
And also, callee still accesses all of clients through this copied list.

Change-Id: Ib88ffcf6877130fb92f47cae4167a7340aaa34f6
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
3 years agoAdd mutex lock for global variables in tts_client 09/231109/2
Suyeon Hwang [Fri, 17 Apr 2020 08:23:50 +0000 (17:23 +0900)]
Add mutex lock for global variables in tts_client

Global varaibles, g_client_list and g_allocated_handle, can occur thread safety issue, because
any threads can access these variables.

This patch makes mutex lock for these variables to avoid thread safety issue.

Change-Id: I7ce1adf0c625715b619573d130408f0924da9785
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
3 years agoChange TV service files for rpm package 62/237962/1 accepted/tizen/unified/20200708.125343 submit/tizen/20200707.060858
sooyeon.kim [Tue, 7 Jul 2020 04:31:33 +0000 (13:31 +0900)]
Change TV service files for rpm package

Change-Id: I95e57e07ce0c225b57728a4ff5838e036f826138
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
3 years agoRemove duplicated package lists 72/237272/1
Jihoon Kim [Fri, 26 Jun 2020 11:42:36 +0000 (20:42 +0900)]
Remove duplicated package lists

Change-Id: Iec51e942c1776a306f1ab85e69717ce1e75877a2
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
3 years agoAdd unittest skeleton 57/235757/4
Jihoon Kim [Tue, 9 Jun 2020 10:15:37 +0000 (19:15 +0900)]
Add unittest skeleton

Change-Id: Id4fde0fc3694b094e65795c2ba68c9173e32bfa7
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
4 years agoUpdate version 1.60.3 91/230991/1 accepted/tizen/unified/20200417.152726 submit/tizen/20200416.105356
wn.jang [Thu, 16 Apr 2020 10:51:33 +0000 (19:51 +0900)]
Update version 1.60.3

Change-Id: I45e6f7ed17481b31d57e8ae02741449b7adf239e

4 years agoFix build error on aarch64 86/230986/2
wn.jang [Thu, 16 Apr 2020 10:31:15 +0000 (19:31 +0900)]
Fix build error on aarch64

Change-Id: I2454cab3a614ceacf23f17841a4165f35d42e408

4 years agoUpdate version to 1.60.2 17/228517/1 submit/tizen/20200323.110648 submit/tizen/20200416.012027
wn.jang [Mon, 23 Mar 2020 10:59:05 +0000 (19:59 +0900)]
Update version to 1.60.2

Change-Id: Ie0b6fd8ade29744a177fa67444dfe0cbad0b9bb4

4 years agoFix ttse TC fail while tct-mgr execute 13/228513/2
wn.jang [Mon, 23 Mar 2020 10:45:47 +0000 (19:45 +0900)]
Fix ttse TC fail while tct-mgr execute

ttse_ prefix TCs are all failed, because dbus_open_connection was already established.
So, if only TC case which means that default appid is differ from current appid is,
it will ignore to established dbus connection.

Change-Id: Id19e6378674d605382e56d8e61663acc72331001

4 years agoUpdate pakcage version (1.60.1) 16/227816/1
sooyeon.kim [Mon, 16 Mar 2020 11:14:33 +0000 (20:14 +0900)]
Update pakcage version (1.60.1)

- Add a logic to check screen reader vconfkey in tts_add_text() (from 18a0e973c5879576ac68811b7816972ab8a71b0f)
- Change the step of checking utf8 validation and text size (from dfc3cde49f4afb40f26a559573e04b3272057883)
- Fix to avoid crash in paused_data (from fd282701c874b4209c74cfb6f3556c9c41575622)

Change-Id: I4531503f933d24c43a307a37825ac1e0b0286ee2
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
4 years agoFix to avoid crash in paused_data 15/227815/1
sooyeon.kim [Mon, 16 Mar 2020 05:20:41 +0000 (14:20 +0900)]
Fix to avoid crash in paused_data

Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
Conflicts:
server/ttsd_player.c

Change-Id: I30f22a1784ca2f93225b4ff0efb59a2f2229c076

4 years agoMerge "Change the step of checking utf8 validation and text size" into tizen
Sooyeon Kim [Mon, 16 Mar 2020 10:44:44 +0000 (10:44 +0000)]
Merge "Change the step of checking utf8 validation and text size" into tizen

4 years agoChange the step of checking utf8 validation and text size 06/227806/1
sooyeon.kim [Mon, 2 Mar 2020 04:30:44 +0000 (13:30 +0900)]
Change the step of checking utf8 validation and text size

Change-Id: Idc42686df3e46dc6cea88e0bfbf6c0c2bc29f616
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit dfc3cde49f4afb40f26a559573e04b3272057883)

4 years agoAdd a logic to check screen reader vconfkey in tts_add_text() 05/227805/1
sooyeon.kim [Thu, 27 Feb 2020 06:12:33 +0000 (15:12 +0900)]
Add a logic to check screen reader vconfkey in tts_add_text()

Change-Id: I1722e6a009e023fa799b6fe31d61ce84b953456e
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit 18a0e973c5879576ac68811b7816972ab8a71b0f)

4 years agoUpdate package version to 1.60.0 50/227750/2
wn.jang [Mon, 16 Mar 2020 07:28:54 +0000 (16:28 +0900)]
Update package version to 1.60.0

Change-Id: I19107b83852605296ac99234a1b9b9a1a5128cdf

4 years agoRemove unnecessary value 16/227616/1
wn.jang [Fri, 13 Mar 2020 06:23:27 +0000 (15:23 +0900)]
Remove unnecessary value

This is related to thread safety error.
The problem happened at following codes in ttsd_player_play() function.

    if (NULL != g_playing_info) {
        if (uid == g_playing_info->uid) {

g_playing_info can be NULL on __play_thread() function which is including this removed codes.
So, this codes has been removed.

Change-Id: I1183904f34712c0747f99e126edb3f444ffdc5b3

4 years agoMerge "Add log to leave string length" into tizen
Wonnam Jang [Mon, 2 Mar 2020 04:27:27 +0000 (04:27 +0000)]
Merge "Add log to leave string length" into tizen

4 years agoAdd log to leave string length 41/226341/1
wn.jang [Mon, 2 Mar 2020 02:04:19 +0000 (11:04 +0900)]
Add log to leave string length

Change-Id: I1bce7041e23c2e0f5854207cd79574d203eca918

4 years agoAdd to set timer as NULL when returning EINA_FALSE 89/225789/1 accepted/tizen/unified/20200302.041942 submit/tizen/20200228.062816
sooyeon.kim [Mon, 24 Feb 2020 10:22:39 +0000 (19:22 +0900)]
Add to set timer as NULL when returning EINA_FALSE

Change-Id: I21373ae8cecb0f40d4c92faa5229a76e1ab4c22f
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
4 years agoFix to mix screen-reader and interrupt mode by adding internal app state 33/224433/1 submit/tizen/20200220.060827 submit/tizen/20200221.052406
sooyeon.kim [Wed, 20 Nov 2019 12:19:15 +0000 (21:19 +0900)]
Fix to mix screen-reader and interrupt mode by adding internal app state

Change-Id: I575c801f78584ad1b20ed1eadaff10c11a8347b0
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit 72a6660fe20050c183ff9c0c2c7c61e17206045c)

4 years agoAdd logs when audio data is exhausted 32/224432/1
wn.jang [Wed, 22 Jan 2020 12:14:36 +0000 (21:14 +0900)]
Add logs when audio data is exhausted

Change-Id: Id1f9d61609e46a1c3b815a99abf651c1b135003b
(cherry picked from commit 8dcb15ae658b60aefc9f967302d92c55ff979f13)

4 years agoFix pkgmgr status and move hello_timer into client handle 31/224431/1
wn.jang [Wed, 22 Jan 2020 06:08:13 +0000 (15:08 +0900)]
Fix pkgmgr status and move hello_timer into client handle

Change-Id: Ifb917210c844503725584a9024577658e78b2af3
(cherry picked from commit 2c205ab6adc5c18807c3206bab995c752e5f4a1f)

4 years agoAdd engine update checker into __send_hello 30/224430/1
sooyeon.kim [Thu, 16 Jan 2020 12:32:23 +0000 (21:32 +0900)]
Add engine update checker into __send_hello

Change-Id: I46df92d861250e2e377ec724fdae3cd80d764d12
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit 121744dc09429cc48df86723ac4139cf8494f81e)

4 years agoAdd timer to stop sending hello message 29/224429/2
sooyeon.kim [Mon, 10 Feb 2020 12:01:45 +0000 (21:01 +0900)]
Add timer to stop sending hello message

Change-Id: Ic86480822ab2bd4c34a9db4fee88bbfcf6a03b5b
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
4 years agoUpdate service files for TV 28/224428/1
wn.jang [Thu, 19 Dec 2019 10:00:19 +0000 (19:00 +0900)]
Update service files for TV

Change-Id: Iaf25d171912752786d59358e61e82740148f7d3b
(cherry picked from commit 93b5cec896eda8fd2103f30ed96cb9a10a32399c)

4 years agoAvoid crash when pid is nagative value 07/223607/1
wn.jang [Thu, 30 Jan 2020 12:23:38 +0000 (21:23 +0900)]
Avoid crash when pid is nagative value

Change-Id: I31a41af85b934a76f4c9bd09c9cdc8321c2659ac

4 years agoCorrect type of sound stream 11/223311/1
wn.jang [Tue, 28 Jan 2020 10:15:03 +0000 (19:15 +0900)]
Correct type of sound stream

Change-Id: I0f15183b8555b519de6ae821da4d717bc0ae2a25
(cherry picked from commit aad189eb85547f8640f7cccbb68b530bad8a753a)

4 years agoAdd a checker into __send_interrupt_client 29/222729/1
sooyeon.kim [Thu, 16 Jan 2020 05:10:55 +0000 (14:10 +0900)]
Add a checker into __send_interrupt_client

Change-Id: I94ee9dcf11557f40571a27744a7efc4c19d481a7
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit 95b4f04dd8e62cc18cda2408d15c73e8d9abc427)

4 years agoUpdate hello protocol 31/222431/1 submit/tizen/20200115.024146
wn.jang [Mon, 6 Jan 2020 14:09:02 +0000 (23:09 +0900)]
Update hello protocol

Change-Id: I5f5b9c258304b6f33656286db1a964a22e90617b
(cherry picked from commit 2bab420365e627aa20f828007a62dc27acda5559)

4 years agoFix pkgmgr_client_free() in thread race condition 27/222427/2
sooyeon.kim [Mon, 13 Jan 2020 12:12:27 +0000 (21:12 +0900)]
Fix pkgmgr_client_free() in thread race condition

Change-Id: I1cb6b08e965555618332dafd555be2bf937a6b56
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
4 years agoChange to call ecore_thread_run to ecore_main_loop_thread_safe_call 25/222425/1
sooyeon.kim [Mon, 13 Jan 2020 10:22:21 +0000 (19:22 +0900)]
Change to call ecore_thread_run to ecore_main_loop_thread_safe_call

Change-Id: I9bec195715ce874d01aafa60e2b51cbdca4bc2b2
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit cf054d67be84ab632995412ff074b03ae663a0cf)

4 years agoAdd engine update checker logic 05/221805/2
sooyeon.kim [Tue, 7 Jan 2020 12:54:52 +0000 (21:54 +0900)]
Add engine update checker logic

Change-Id: Ibfc00c2c49b4edc9145396f3a58ce6f5deee23b9
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
4 years agoMerge "Update background volume ratio to 0.4" into tizen
Wonnam Jang [Wed, 15 Jan 2020 01:54:15 +0000 (01:54 +0000)]
Merge "Update background volume ratio to 0.4" into tizen

4 years agoMerge "Delete ecore timer when quit ecore main loop" into tizen
Wonnam Jang [Mon, 13 Jan 2020 23:50:13 +0000 (23:50 +0000)]
Merge "Delete ecore timer when quit ecore main loop" into tizen

4 years agoUpdate codes for gcc 9.2 compiler 79/222179/1 accepted/tizen/unified/20200113.130603 submit/tizen/20200110.075809
wn.jang [Mon, 30 Dec 2019 08:53:17 +0000 (17:53 +0900)]
Update codes for gcc 9.2 compiler

Change-Id: I4dfc53c538b73227ce4e72c500c13343a9fe439a
(cherry picked from commit 90167c9926e1b78ecba54ab57b1a0b0f97fa5104)

4 years agoDelete ecore timer when quit ecore main loop 80/222080/1
wn.jang [Thu, 9 Jan 2020 10:19:47 +0000 (19:19 +0900)]
Delete ecore timer when quit ecore main loop

Change-Id: I6c98681015d6867d1adef64609b9e0cde34b5b9b

4 years agochange codes to function such as ttsd_player_clear 32/221032/1
wn.jang [Thu, 26 Dec 2019 10:31:57 +0000 (19:31 +0900)]
change codes to function such as ttsd_player_clear

Change-Id: I7de5c91a82970b0113c3e543f61b81ed787e2f5c

4 years agoCrash issue fix by stopping timer invocation during cleanup 31/221031/1
sooyeon.kim [Mon, 1 Apr 2019 06:50:39 +0000 (15:50 +0900)]
Crash issue fix by stopping timer invocation during cleanup

Change-Id: I6ddf1ae619a935390473c71f07e480d82b48f54b
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit b50e1cddabcf7aeade7eb4bcd92e72594034eeff)

4 years agoUpdate background volume ratio to 0.4 53/220753/1
wn.jang [Mon, 23 Dec 2019 01:42:14 +0000 (10:42 +0900)]
Update background volume ratio to 0.4

Change-Id: Ide46c0caa18e615c4042d8349f215ed8643184ce
(cherry picked from commit c9d1b3ac42a7899d2167791b341f500ad0fdcbb3)

4 years agoMerge "Add codes to avoid memory leak" into tizen
Wonnam Jang [Thu, 19 Dec 2019 01:28:41 +0000 (01:28 +0000)]
Merge "Add codes to avoid memory leak" into tizen

4 years agoAdd codes to avoid memory leak 90/220490/1
wn.jang [Thu, 19 Dec 2019 01:13:17 +0000 (10:13 +0900)]
Add codes to avoid memory leak

Change-Id: I169e8f76ba6474f24a1ec9c166833fde4d16d0f7

4 years agoFix build issue (delete unnecessary log) 00/219800/1
sooyeon.kim [Tue, 10 Dec 2019 06:56:59 +0000 (15:56 +0900)]
Fix build issue (delete unnecessary log)

Change-Id: Ida487b001d9f82335b34eb653a497638b640d4c3
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
4 years agoSkip ducking when backgroud volume ratio is 1.0 76/219676/1
wn.jang [Mon, 9 Dec 2019 06:37:48 +0000 (15:37 +0900)]
Skip ducking when backgroud volume ratio is 1.0

Change-Id: I0c446186626deabb58ebc792e7de38f5933e2c26

4 years agoFix url link properly 90/219590/1
wn.jang [Fri, 6 Dec 2019 08:01:04 +0000 (17:01 +0900)]
Fix url link properly

Change-Id: If8f3509c650b7084280710d103f98e943b7a8b03

4 years agoRemove TV service file 94/218994/1
wn.jang [Fri, 29 Nov 2019 10:35:41 +0000 (19:35 +0900)]
Remove TV service file

Change-Id: I44bac51f4ae3252c6aa3e49e28757707b361b441

4 years agoChange internal function to static 75/218075/1 accepted/tizen/unified/20191122.053225 submit/tizen/20191121.081105
wn.jang [Tue, 19 Nov 2019 07:29:57 +0000 (16:29 +0900)]
Change internal function to static

Change-Id: Ibb4ff4897efc51be3be5bc3adb28d887e58f5cd0

4 years agoMerge "Fix to mix sound when interrupt mode and other modes are requested to play...
Sooyeon Kim [Fri, 15 Nov 2019 07:58:24 +0000 (07:58 +0000)]
Merge "Fix to mix sound when interrupt mode and other modes are requested to play" into tizen

4 years agoMerge "Fix line coverage script" into tizen accepted/tizen/unified/20191111.105514 submit/tizen/20191108.071610
Wonnam Jang [Fri, 8 Nov 2019 07:09:28 +0000 (07:09 +0000)]
Merge "Fix line coverage script" into tizen

4 years agoSeperate sound stream ducking handle 40/217040/3 accepted/tizen/unified/20191108.065937 submit/tizen/20191106.055029
wn.jang [Wed, 6 Nov 2019 01:35:16 +0000 (10:35 +0900)]
Seperate sound stream ducking handle

Change-Id: I029e7a7f2483aaf377a3229c5084d55577cc639c

4 years agoFix to mix sound when interrupt mode and other modes are requested to play 08/216808/1
sooyeon.kim [Fri, 1 Nov 2019 09:52:04 +0000 (18:52 +0900)]
Fix to mix sound when interrupt mode and other modes are requested to play

Change-Id: I66461497d7c6ea3836587264fd4e07e31ddd3ac9
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
4 years agoFix line coverage script 97/216097/1
sooyeon.kim [Mon, 21 Oct 2019 05:30:03 +0000 (14:30 +0900)]
Fix line coverage script

Change-Id: Ib1976356af270d57e86dd5166dfdf77c4e54cbdd
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
4 years agoAdded set/unset background volume ratio fucntion. 38/215838/4 accepted/tizen_5.5_unified_mobile_hotfix tizen_5.5_mobile_hotfix accepted/tizen/5.5/unified/20191031.020148 accepted/tizen/5.5/unified/mobile/hotfix/20201027.080119 accepted/tizen/unified/20191018.222501 submit/tizen/20191017.122545 submit/tizen_5.5/20191031.000005 submit/tizen_5.5_mobile_hotfix/20201026.185105 tizen_5.5.m2_release
sungrae jo [Wed, 16 Oct 2019 10:49:02 +0000 (19:49 +0900)]
Added set/unset background volume ratio fucntion.

Change-Id: I8babe58e22ff854920bed1d15e86576bb2499f73
Signed-off-by: sungrae jo <seongrae.jo@samsung.com>
4 years agoMerge "Add gcov package generation feature" into tizen accepted/tizen/unified/20190724.063816 submit/tizen/20190710.020226 submit/tizen/20190715.110409 submit/tizen/20190716.023153 submit/tizen/20190723.072308
Sooyeon Kim [Tue, 9 Jul 2019 01:10:03 +0000 (01:10 +0000)]
Merge "Add gcov package generation feature" into tizen

4 years agoDelete meaningless configuration 15/209515/1
INSUN PYO [Mon, 8 Jul 2019 10:58:49 +0000 (19:58 +0900)]
Delete meaningless configuration

Change-Id: I91568b513cb0c601dcd1db0a32739e55e5e3c658

4 years agoAdd gcov package generation feature 32/209332/1
sooyeon.kim [Fri, 5 Jul 2019 02:47:56 +0000 (11:47 +0900)]
Add gcov package generation feature

Change-Id: I5ba58ce32cef98520b40b876fe17f3ef86567700
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoAdd sound buf save for test 99/206999/1
sungrae jo [Thu, 30 May 2019 01:41:20 +0000 (10:41 +0900)]
Add sound buf save for test

Change-Id: I20355dea35f02f351d103f308a64e30e9e95bd3a
Signed-off-by: sungrae jo <seongrae.jo@samsung.com>
5 years agoRemove callback when client is destroy 02/205202/2 accepted/tizen/unified/20190602.221734 submit/tizen/20190531.011938
wn.jang [Tue, 30 Apr 2019 07:28:29 +0000 (16:28 +0900)]
Remove callback when client is destroy

Change-Id: I60cc40086c4d889212dc2d019915f6f7f0ef4c16
Signed-off-by: wn.jang <wn.jang@samsung.com>
5 years agoAdd unset_policy when utt_completed is occurred 72/200672/1
sooyeon.kim [Wed, 27 Feb 2019 02:26:50 +0000 (11:26 +0900)]
Add unset_policy when utt_completed is occurred

Change-Id: Ie917b6a7d65b3883357e7d280d676ec148d51b76
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoFix thread unsafety issue in ttsd_player_pause 28/200128/2
sooyeon.kim [Tue, 19 Feb 2019 10:15:26 +0000 (19:15 +0900)]
Fix thread unsafety issue in ttsd_player_pause

Change-Id: I74d5c8fda0f24b158d172cf21957d492890bb8c2
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoChange uid/gid of service files 95/194595/1 accepted/tizen/unified/20181207.061540 submit/tizen/20181206.053957
sooyeon.kim [Thu, 6 Dec 2018 05:06:40 +0000 (14:06 +0900)]
Change uid/gid of service files

Change-Id: I174499c40448fa7769d4e1495de91cd1f6f59020
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit b25aadcdc4a5babb378eb6f8c7b4f90172635e02)

5 years agoChange executable file for getting engine info 48/194548/1
sooyeon.kim [Wed, 5 Dec 2018 13:18:36 +0000 (22:18 +0900)]
Change executable file for getting engine info

Change-Id: Icab17b69f38a78a4be6114144b2bb127cf7dcfba
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit dc6a19ee309da825e14834f363414235191fdf34)

5 years agoMerge "Change uid and gid for service files" into tizen
Sooyeon Kim [Wed, 5 Dec 2018 11:55:29 +0000 (11:55 +0000)]
Merge "Change uid and gid for service files" into tizen

5 years agoMerge "Remove unnecessary timer" into tizen
Wonnam Jang [Wed, 5 Dec 2018 11:55:04 +0000 (11:55 +0000)]
Merge "Remove unnecessary timer" into tizen

5 years agoChange uid and gid for service files 42/194542/1
sooyeon.kim [Wed, 5 Dec 2018 11:34:30 +0000 (20:34 +0900)]
Change uid and gid for service files

Change-Id: Iaa3c76107f5ac5a88cdc29f6b683b7786703464b
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit f7e3315a9e6e3ab7e7eafb3236c76b4ffb439ebc)

5 years agoFix to set sound stream when audio is changed 86/194486/1
sooyeon.kim [Tue, 4 Dec 2018 05:45:02 +0000 (14:45 +0900)]
Fix to set sound stream when audio is changed

Change-Id: I5e6589d84a06c903a7d7c2a4a17c89744cf25aa3
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit f9d62bcf374096844f410b502b66370721ecbca0)

5 years agoRemove unnecessary timer 43/194043/1
Wonnam Jang [Wed, 28 Nov 2018 10:59:54 +0000 (19:59 +0900)]
Remove unnecessary timer

Change-Id: I6f56f5eda8db76a3cea0d9a055bd0c78a3622ca4
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
5 years agoAdd to delete state_changed_timer 25/193225/1
sooyeon.kim [Fri, 16 Nov 2018 07:52:53 +0000 (16:52 +0900)]
Add to delete state_changed_timer

Change-Id: I23f2f57b6c274202e918670c66ae57aec4f6ea13
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit 9ab4c27569bff3632a7f2eca8ea880217e4d0b1c)

5 years agoFix memory leak 97/193097/2
sooyeon.kim [Wed, 14 Nov 2018 11:55:07 +0000 (20:55 +0900)]
Fix memory leak

Change-Id: Ifbcec791108de7aeaabc6479d668dc63374e7d56
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoFix calling set_policy for getting sound focus 49/192649/2
sooyeon.kim [Wed, 7 Nov 2018 09:35:36 +0000 (18:35 +0900)]
Fix calling set_policy for getting sound focus

Change-Id: I45382e0e90036cc0ca2588b0bd73af6b7eff97a8
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agochange dbus policy 93/192293/1 submit/tizen/20181102.052110
Wonnam Jang [Fri, 2 Nov 2018 05:10:11 +0000 (14:10 +0900)]
change dbus policy

Change-Id: Ie704debb735a55993df62d2c2d2265ae5f8c00c5
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
5 years agoChange session dbus to system dbus 89/190989/3 submit/tizen/20181030.100516
Wonnam Jang [Wed, 10 Oct 2018 08:14:29 +0000 (17:14 +0900)]
Change session dbus to system dbus

Change-Id: I542d32b1091269d4308043c222fe75c7671a35dd
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
Signed-off-by: Hyotaek Shim <hyotaek.shim@samsung.com>
5 years agoAdd logs to check removing config xml 55/190155/3 accepted/tizen/5.0/unified/20181102.023225 accepted/tizen/unified/20180928.080628 submit/tizen/20180927.113904 submit/tizen_5.0/20181101.000005
sooyeon.kim [Thu, 27 Sep 2018 10:50:37 +0000 (19:50 +0900)]
Add logs to check removing config xml

Change-Id: I3c909b0d81259df8a23b58d52a5a3fe36e22c255
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoFix spelling errata 36/187736/1 accepted/tizen/unified/20180829.142716 submit/tizen/20180828.101453
sooyeon.kim [Tue, 28 Aug 2018 06:17:41 +0000 (15:17 +0900)]
Fix spelling errata

Change-Id: I570fcfb0e86e6859e92b1b0ee0075f4b4580bd63
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoMerge "Fix log tags" into tizen accepted/tizen/unified/20180810.132630 submit/tizen/20180809.012922 submit/tizen/20180809.124208
sooyeon.kim [Wed, 8 Aug 2018 04:45:32 +0000 (04:45 +0000)]
Merge "Fix log tags" into tizen

5 years agoMerge "Add line coverage tags" into tizen
sooyeon.kim [Wed, 8 Aug 2018 04:45:01 +0000 (04:45 +0000)]
Merge "Add line coverage tags" into tizen

5 years agoFix log tags 95/186195/1
sooyeon.kim [Wed, 8 Aug 2018 04:36:39 +0000 (13:36 +0900)]
Fix log tags

Change-Id: I1c8f599d804a6073f7d5ab4519b8b138f4ae2cd3
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoFix dbus delay when requesting hello 01/185301/2
sooyeon.kim [Fri, 27 Jul 2018 09:30:47 +0000 (18:30 +0900)]
Fix dbus delay when requesting hello

Change-Id: I53891741bba48b2e2d31d6dddff12a03fefde41b
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoAdd line coverage tags 37/185537/1
sooyeon.kim [Tue, 31 Jul 2018 10:00:11 +0000 (19:00 +0900)]
Add line coverage tags

Change-Id: Ibb7a6af4efad3e453810a5c9c99894b17ec63232
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoMerge "Add parsing extra voice info xml" into tizen accepted/tizen/unified/20180725.060401 submit/tizen/20180724.083906
Wonnam Jang [Thu, 5 Jul 2018 09:52:58 +0000 (09:52 +0000)]
Merge "Add parsing extra voice info xml" into tizen

5 years agoMerge "Add descriptions for checking line coverage" into tizen
Wonnam Jang [Thu, 5 Jul 2018 09:51:44 +0000 (09:51 +0000)]
Merge "Add descriptions for checking line coverage" into tizen

5 years agoAdd descriptions for checking line coverage 32/182932/2
sooyeon.kim [Fri, 29 Jun 2018 01:04:52 +0000 (10:04 +0900)]
Add descriptions for checking line coverage

Change-Id: I02dc255b70e7a20a5e37970499cf3b780b3c1016
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoAdd parsing extra voice info xml 33/183333/2
sooyeon.kim [Wed, 4 Jul 2018 12:19:51 +0000 (21:19 +0900)]
Add parsing extra voice info xml

Change-Id: I132f9e12bb871f136dd271e1e97553531525b956
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
5 years agoFix Wformat build error 42/183042/1
yhji [Mon, 2 Jul 2018 02:51:46 +0000 (11:51 +0900)]
Fix Wformat build error

Change-Id: I2cd6f4e59952c500b307f80324b8ea6d43dad48b

5 years agoFix thread unsafety issue 96/182596/1 accepted/tizen/unified/20180628.061232 submit/tizen/20180627.103004
sooyeon.kim [Tue, 26 Jun 2018 11:00:22 +0000 (20:00 +0900)]
Fix thread unsafety issue

Change-Id: I96cffc2efa50ec53ca0f047823edad6c28de7856
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
6 years ago[ACR-1216][tts][Add tts_repeat()] 15/177615/10 accepted/tizen/unified/20180515.063821 submit/tizen/20180515.010831
sooyeon.kim [Wed, 2 May 2018 07:09:54 +0000 (16:09 +0900)]
[ACR-1216][tts][Add tts_repeat()]

Change-Id: I3aa4413aa7d047521b888a027b78fcf99699b970
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
6 years agocheck return value from vconf 80/178080/1 accepted/tizen/unified/20180511.073944 submit/tizen/20180510.125405
Wonnam Jang [Tue, 8 May 2018 05:24:57 +0000 (14:24 +0900)]
check return value from vconf

Change-Id: I87bcf1a84f30763710f112cb5da1451b6dda6dec
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>