wn.jang [Tue, 5 Jul 2022 04:43:02 +0000 (13:43 +0900)]
Remove unreachable codes
Change-Id: I355058d68d6a2f850ab346dd4e934cad3d85ff9f
wn.jang [Fri, 1 Jul 2022 10:03:28 +0000 (19:03 +0900)]
Remove duplicated codes
Change-Id: I8a9b6e53fa371936b50bcfe749ade2dc85c12508
wn.jang [Tue, 28 Jun 2022 02:50:54 +0000 (11:50 +0900)]
Remove duplicates regarding dbus_connection_send_with_reply_and_block
Change-Id: Iaec79cc7a2801fd10e45349bff77ea96552763de
wn.jang [Mon, 27 Jun 2022 11:02:45 +0000 (20:02 +0900)]
Remove duplicated codes for set/unset sound for start and stop
Change-Id: I927c0cd1ec1e022a9564a259e82a58d1d2936a11
wn.jang [Fri, 24 Jun 2022 05:07:29 +0000 (14:07 +0900)]
Remove duplicated code for SAM score
Change-Id: I2ae51acc83aefb32a0eb579ab560c74080c3be41
Suyeon Hwang [Mon, 13 Jun 2022 08:17:59 +0000 (17:17 +0900)]
Update version (1.70.4)
Change-Id: I6f00ac16c432200d852f0bf3e1613d6822e280a6
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Fri, 10 Jun 2022 09:45:31 +0000 (18:45 +0900)]
Fix unittest for line coverage automation
Change-Id: I55a086595b43ea33f6d9aaf1304f90edc99eb8f9
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Thu, 9 Jun 2022 04:04:45 +0000 (13:04 +0900)]
Fix gcov package contents for automation
Change-Id: Icec96eaa943ddd88a7516af91b1112cc4352a3e1
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
wn.jang [Fri, 15 Apr 2022 01:03:00 +0000 (10:03 +0900)]
Update version to 1.70.3
Change-Id: Ic2777ff15832c7e0eec2fe643c3856c5a748d6d6
wn.jang [Wed, 13 Apr 2022 10:39:03 +0000 (19:39 +0900)]
Add metadata profile xml file
Change-Id: I56b09585dc5396e5b46d505f18bf3d43cb2017ee
Suyeon Hwang [Wed, 23 Feb 2022 11:23:09 +0000 (20:23 +0900)]
Update version (1.70.2)
Change-Id: I8b51a78b736e1eb656d1f1d1cc8115f9c0a1296b
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Wed, 23 Feb 2022 06:00:17 +0000 (15:00 +0900)]
Prevent state change even if no recognition result callback is registered
Current code changes the state to ready when the result comes from the server without registered
recognition result callback. However, this behavior can make difference between client state and
real server state.
To handle this potential issue, this patch prevents the state change in this case. By this change,
client state is always matched with server state.
Change-Id: I4df2438fb09d00185318b487b8f233ba0918798b
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Wed, 23 Feb 2022 05:45:59 +0000 (14:45 +0900)]
Fix the condition for checking dbus data type of uid
Type of uid is unsigned integer, but current code checks whether the uid type is signed integer.
By this behavior, the result from server is not received.
This patch changes the condition for checking dbus data type of uid from int32 to uint32.
By this change, the result is properly delivered to client application by the callback.
Change-Id: I0b0e75fcc5f4903dd5085fa208b21b0e5e30f530
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
wn.jang [Thu, 20 Jan 2022 07:36:26 +0000 (16:36 +0900)]
Update version to 1.70.1
Change-Id: Ia85a00cb18d0b45854a85126bb0d5ab9ed141f19
Wonnam Jang [Thu, 20 Jan 2022 07:21:32 +0000 (07:21 +0000)]
Merge "Coverage support for robot profile" into tizen
wn.jang [Thu, 20 Jan 2022 06:27:06 +0000 (15:27 +0900)]
Coverage support for robot profile
Change-Id: I4e18863cac25c9db04442f2801cd09874de30a74
Suyeon Hwang [Mon, 27 Dec 2021 09:10:02 +0000 (18:10 +0900)]
Merge branch 'tizen_6.5' into tizen
Change-Id: Id7b2ac0c4e921eaf1b65efcf67870a693857d450
Suyeon Hwang [Mon, 27 Dec 2021 09:09:34 +0000 (18:09 +0900)]
Update version (1.70.0)
Change-Id: I6da39a0b9dd36b54b6769761f233df851a30cd30
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Mon, 27 Dec 2021 08:39:23 +0000 (17:39 +0900)]
Update version (1.65.2)
Change-Id: Iafa4ccde1abd6169c4feb8d5abc10474917d820c
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Mon, 20 Dec 2021 03:12:01 +0000 (12:12 +0900)]
Get UID from list using stt_config_client_s structure
Current code converts the type of element as integer. However, the element of the list is instance
of stt_config_client_s structure. Because the first member of the structure is uid, so current code
has no problem until now. But this can occur problem if the type of uid or the order of member is
changed.
To solve this problem, this patch changes the type from integer to the structure. This can provide
safe access to member.
Change-Id: Ica103855b96bfc4196044772343216f75d38f9c0
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Mon, 20 Dec 2021 02:36:45 +0000 (11:36 +0900)]
Fix the data type for uid
On 32bit architecture, signed integer is enough to store uid value. However, on 64bit architecture,
signed integer is not enough because maximum value of pid is 4194304 and value of pid * 1000 is
bigger than the limit of signed integer. And it cause overflow problem.
To solve this issue, this patch changes the data type of variable that stores uid.
Unsigned integer can provides enough space to store uid value on 64bit os.
Change-Id: I32fd8cbc81e2553524cb43cd357eda077f9ceeea
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Thu, 18 Nov 2021 08:27:06 +0000 (17:27 +0900)]
Merge branch 'tizen' into tizen_6.5
Change-Id: Ia2573c482c802ef483d6299961d4b98aecfa1ac8
Suyeon Hwang [Wed, 6 Oct 2021 07:03:56 +0000 (16:03 +0900)]
Update version (1.65.1)
Change-Id: I4b2de877c1152128b1ff368ee69a266b83059d61
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Fri, 1 Oct 2021 08:52:47 +0000 (17:52 +0900)]
Fix memory leak when remove item from g_list
Change-Id: I18f0f9aac40afb49b220477fd0e8072c54ed7608
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Wed, 26 May 2021 05:48:48 +0000 (14:48 +0900)]
Update version (1.65.0)
Change-Id: Ieda006264b0a5bb8f5ef64b9d7a9ce3b937cd271
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Fri, 21 May 2021 10:05:47 +0000 (19:05 +0900)]
Remove access to avoid toctou problem
Change-Id: I67a58159cc453ec7c60dd685663f7d03424af5d7
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Fri, 21 May 2021 09:05:27 +0000 (18:05 +0900)]
Remove memory leakage to avoid dangling
Change-Id: I9139a059bb642c6748d50dcac8843d0a422ce5b1
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
sooyeon.kim [Mon, 19 Apr 2021 09:05:19 +0000 (18:05 +0900)]
Add dbus_message_unref() to avoid memory leak
Change-Id: Ie9398d91244e804a40569bf5de7f61cb62d0cd79
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
wn.jang [Fri, 2 Apr 2021 01:02:20 +0000 (10:02 +0900)]
Change log level for error msg
Change-Id: Ia653a6cc4db506fe4992b462c7bc19de0778d7de
Suyeon Hwang [Fri, 12 Mar 2021 08:20:26 +0000 (17:20 +0900)]
Add bluetooth command to record voice using remote controller
- Add a logic to check whether the current client is TC app or not.
Change-Id: I36fcc9e5c179b1b64263c4fe482e18669c6cbed1
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
INSUN PYO [Wed, 3 Feb 2021 05:12:12 +0000 (14:12 +0900)]
spec: remove unused pkgconfig(libsystemd-daemon) build dependency
Change-Id: I3e82ee1f24d96b00b27a49b8b03939f2b7988b3d
sooyeon.kim [Wed, 16 Dec 2020 09:06:31 +0000 (18:06 +0900)]
Remove unnecessary HTML link for feature
Change-Id: Id588d2e05eeee16fc73ad02427ecfb2ed635742a
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sungrae jo [Thu, 3 Dec 2020 09:48:25 +0000 (18:48 +0900)]
Fix Native STTE API references
Change-Id: I091a5da3ee6c00a79ba847bdef86a936ac476a51
Signed-off-by: sungrae jo <seongrae.jo@samsung.com>
wn.jang [Thu, 8 Oct 2020 10:28:55 +0000 (19:28 +0900)]
Fix defects detected by static analysis
Change-Id: Idff4c4459165f19351b81d1d275a41c7fc498a06
wn.jang [Thu, 8 Oct 2020 10:00:14 +0000 (19:00 +0900)]
Fix crash when connection was null
JIRA - https://code.sec.samsung.net/jira/browse/TSIX-6919
callstack was as following.
Callstack Information (PID:11475)
Call Stack Count: 24
0: gsignal + 0x9c (0xb63d3470) [/usr/lib/libc-2.30.so] + 0x30470
1: abort + 0x10c (0xb63bd780) [/usr/lib/libc-2.30.so] + 0x1a780
2: _dbus_abort + 0x68 (0xa6a356e0) [/usr/lib/libdbus-1.so.3.19.11] + 0x396e0
3: _dbus_warn_check_failed + 0x88 (0xa6a2a128) [/usr/lib/libdbus-1.so.3.19.11] + 0x2e128
4: _dbus_warn_return_if_fail + 0x30 (0xa6a2a830) [/usr/lib/libdbus-1.so.3.19.11] + 0x2e830
5: dbus_connection_send_with_reply_and_block + 0x214 (0xa6a0ef8c) [/usr/lib/libdbus-1.so.3.19.11] + 0x12f8c
6: stt_dbus_request_hello + 0x58 (0xa6ab8c75) [/usr/lib/libstt.so] + 0xdc75
Change-Id: I182bda3b921a63a6c43916fe1acb968fb3ebe505
wn.jang [Fri, 25 Sep 2020 06:18:43 +0000 (15:18 +0900)]
Update documentation according to the review
Change-Id: I62407e2cd0b8b193def6933759c51c93252b5276
Jihoon Kim [Fri, 7 Aug 2020 11:05:20 +0000 (11:05 +0000)]
Merge "Add STT unittests" into tizen
sooyeon.kim [Thu, 6 Aug 2020 02:18:55 +0000 (11:18 +0900)]
Update version (1.60.3)
Change-Id: I9631f1d28b73fa7ccba81cef202b26adff1e349d
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sooyeon.kim [Thu, 6 Aug 2020 01:56:56 +0000 (10:56 +0900)]
Comment out TV_FFV_MODE
Change-Id: I25ce7e9717c59062d187dd0e851549fa4edae1a3
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
Jihoon Kim [Wed, 22 Jul 2020 02:55:10 +0000 (11:55 +0900)]
Add STT unittests
Change-Id: I7c639b884093c07993b9aff70a418e7eeec1c5be
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
Jihoon Kim [Thu, 23 Jul 2020 02:34:56 +0000 (02:34 +0000)]
Merge changes Ia10c852b,I6bc34aad into tizen
* changes:
Change internal callback to static function
Remove unused code
Jihoon Kim [Wed, 22 Jul 2020 02:44:55 +0000 (11:44 +0900)]
Change internal callback to static function
Change-Id: Ia10c852b3546bcbf11ae6d4809b430be293298b6
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
Jihoon Kim [Wed, 22 Jul 2020 02:44:25 +0000 (11:44 +0900)]
Remove unused code
Change-Id: I6bc34aadb64248390ae71c634ed437a428ee3a43
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
Suyeon Hwang [Wed, 22 Jul 2020 08:27:57 +0000 (17:27 +0900)]
Version up to 1.60.2
Change-Id: I676c7652280a003a04562f35da674bd98551f986
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Wed, 22 Jul 2020 02:30:57 +0000 (11:30 +0900)]
Remove sttd_engine_agent.h from stt_engine.c
stt_engine.c produces the circular dependency problem by including sttd_engine_agent.h.
This patch removes sttd_engine_agent.h from stt_engine.c to remove circular depedency.
To remove sttd_engine_agent.h, this patch also changes and removes some functions in stt_engine.c.
Change-Id: I815660e70d9094f20c8b17f380a5e4e7bc3eb4d2
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
Suyeon Hwang [Fri, 17 Jul 2020 05:32:43 +0000 (14:32 +0900)]
Remove external definition from common module
`common` module should not have accessed any other modules like `client` or `server`, but it has
used `log_tag()` function on `client` module by external definition.
This kind of access occurs cyclic depedency.
This patch removes external definition on common modules to remove cyclic depedencies.
Change-Id: I769a0886bdfb150c8943687d230ba85afe7d0ea0
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
wn.jang [Fri, 20 Mar 2020 01:46:58 +0000 (10:46 +0900)]
Update version to 1.60.1
Change-Id: Ica951b0b544028b06e0cb63a58e8055231584a46
wn.jang [Fri, 20 Mar 2020 01:32:30 +0000 (10:32 +0900)]
Fix stte TC fail while tct-mgr execute
Change-Id: I82aa425cd7b89703cd03d86d4c03ea302251d5b6
sooyeon.kim [Mon, 16 Mar 2020 10:35:19 +0000 (19:35 +0900)]
Update package version (1.60.0)
- Change sound_manager_create_stream_information in accordance with the stream type (from
6df0429105026bc1496e715f0ce2c46b6a8a703e)
- Change a logic for changing system volume using ducking APIs (from
f5e97e754e5e8aac40c03291ce14f3cbfe1a37db)
Change-Id: I9add54e3c822b0e1380cea18d64a0ec41a7f99b7
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sooyeon.kim [Fri, 13 Mar 2020 05:48:53 +0000 (14:48 +0900)]
Change a logic for changing system volume using ducking APIs
Change-Id: I7ddf0a47c4ea483f8b8bb19e5957c0ae7595d24d
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit
f5e97e754e5e8aac40c03291ce14f3cbfe1a37db)
sooyeon.kim [Wed, 11 Mar 2020 09:58:32 +0000 (18:58 +0900)]
Change sound_manager_create_stream_information in accordance with the stream type
Change-Id: Iad4222ae450396f7874a08b322582574ccf03156
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit
6df0429105026bc1496e715f0ce2c46b6a8a703e)
wn.jang [Fri, 17 Jan 2020 08:25:11 +0000 (17:25 +0900)]
Add to stop recording from FFV
Change-Id: I4fa1885689bbc690532f21070df10428c96da631
wn.jang [Fri, 17 Jan 2020 07:00:43 +0000 (16:00 +0900)]
Ignore to call FFV audio_callback when it is not recording state
Change-Id: I110f53faa8867bf39ca072fdcf6971ff954b1abc
wn.jang [Tue, 31 Dec 2019 02:36:20 +0000 (11:36 +0900)]
ignore audio callback when no stt client is
Change-Id: I00a5262da2425335ea5d2f2145da4851b31945cc
wn.jang [Tue, 31 Dec 2019 00:18:25 +0000 (09:18 +0900)]
Fix crash issue
Change-Id: I4141e9424a2501eefda98f4b8cee73ba17c1dbc9
sungrae jo [Tue, 24 Dec 2019 07:12:15 +0000 (16:12 +0900)]
Fixed cynara log
Change-Id: Iacaf881fac4b9dcafb24b2f970f374bc16421510
Signed-off-by: sungrae jo <seongrae.jo@samsung.com>
sungrae jo [Fri, 13 Dec 2019 02:11:18 +0000 (11:11 +0900)]
Fixed cynara code.
Change-Id: Ic07a73231e5a2af8c3d8173e1dcaeb07c7d3dfbd
Signed-off-by: sungrae jo <seongrae.jo@samsung.com>
wn.jang [Fri, 6 Dec 2019 07:56:06 +0000 (16:56 +0900)]
Fix url link properly
Change-Id: I77d9bbde8afe662882597aef1360b360fca3491f
wn.jang [Tue, 19 Nov 2019 07:27:22 +0000 (16:27 +0900)]
Change internal function to static
Change-Id: I6667d6bbba6c3b57c2caf80a1e48e0ec5f0a6edd
wn.jang [Thu, 7 Nov 2019 23:08:37 +0000 (08:08 +0900)]
Add function to change system volume in internal header
Change-Id: Ie0e798049c02419db298a028ed243287ac3f6c0e
sooyeon.kim [Mon, 21 Oct 2019 05:21:24 +0000 (14:21 +0900)]
Fix line coverage script
Change-Id: I11f58a2a75172bec48d5e027c5ff32445d2c829f
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sungwook park [Thu, 26 Sep 2019 05:18:29 +0000 (05:18 +0000)]
Revert "Add parameter for stte_unset_audio_type_set_cb to fix issue for utc"
This reverts commit
c482162dd98f4b76f870f6c861f6ca2e3f80ebd3.
Change-Id: Ib6ff0f45d563b452198e35bb46788c99c28526c8
wn.jang [Wed, 25 Sep 2019 10:47:05 +0000 (19:47 +0900)]
Add unset callback
Change-Id: I27a2e3a237f161159cf440de6d2d3a43da25900c
Sungwook Park [Wed, 25 Sep 2019 10:00:33 +0000 (19:00 +0900)]
Add parameter for stte_unset_audio_type_set_cb to fix issue for utc
Change-Id: I76349ec1505904194049b8ab1b4e43a13434035f
Signed-off-by: Sungwook Park <sungwook79.park@samsung.com>
wn.jang [Thu, 5 Sep 2019 04:18:26 +0000 (13:18 +0900)]
[ACR-1449] Add new api to set audio type
Change-Id: I447e56b41af16cfa116ce07dbb4f3afb33a61aea
wn.jang [Wed, 4 Sep 2019 09:11:01 +0000 (18:11 +0900)]
[ACR-1449] Add to set speech status callback
Change-Id: Icb3d5c33a3506a453b58ddcd6dab37d9db96b7ed
Wonnam Jang [Thu, 8 Aug 2019 06:40:28 +0000 (06:40 +0000)]
Merge "Remove unnecessary dbus policy rules" into tizen
Hyotaek Shim [Mon, 5 Aug 2019 02:32:49 +0000 (11:32 +0900)]
Remove unnecessary dbus policy rules
Change-Id: I964200397163a803b7df46ebf94448c87dfce1fc
Signed-off-by: Hyotaek Shim <hyotaek.shim@samsung.com>
wn.jang [Tue, 16 Jul 2019 01:44:42 +0000 (10:44 +0900)]
Add far field recognition
Change-Id: Iac1b08b1227cda6e55c68df97ab29b76965a5baa
Signed-off-by: wn.jang <wn.jang@samsung.com>
sooyeon.kim [Fri, 5 Jul 2019 02:44:12 +0000 (11:44 +0900)]
Add gcov package generation feature
Change-Id: I025692b27a8c628e266f77d3bc2a83108366360d
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sooyeon.kim [Thu, 9 May 2019 05:08:15 +0000 (14:08 +0900)]
Add an option for g_audio_timer
Change-Id: I6a5940c2e2493f15c7ec63f4c8e9ffe0385eb348
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sooyeon.kim [Mon, 15 Apr 2019 01:27:16 +0000 (10:27 +0900)]
Fix recorder crash
Change-Id: I18e17fb1f56bf6cd571222aed0300a247f128489
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
wn.jang [Wed, 24 Apr 2019 12:02:50 +0000 (21:02 +0900)]
Add to change system volume
Change-Id: I94d6eaafd0f460cf3013b49fb5a49f2bd8c91cae
Signed-off-by: wn.jang <wn.jang@samsung.com>
sooyeon.kim [Mon, 28 Jan 2019 08:32:47 +0000 (17:32 +0900)]
Delete processing timer at main thread
Change-Id: I0595c67ab03efab92e29d93053c9af09a9bd2b8e
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit
fb9c73980096c07f9ca28bdb1ccc078748355780)
Sooyeon Kim [Mon, 15 Apr 2019 08:57:36 +0000 (08:57 +0000)]
Merge "add logs for sttd" into tizen
Sooyeon Kim [Mon, 15 Apr 2019 08:57:28 +0000 (08:57 +0000)]
Merge "Remove stt-config in RW when xmlParseFile is failed" into tizen
Wonnam Jang [Wed, 23 Jan 2019 11:39:47 +0000 (20:39 +0900)]
add logs for sttd
Change-Id: I212c369ce9b8941d63e66468dd9b8d02f058a8a4
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
(cherry picked from commit
f0a11dcb2a0fbdc450f61c1365f067f9c44268fd)
sooyeon.kim [Fri, 18 Jan 2019 01:40:58 +0000 (10:40 +0900)]
Remove stt-config in RW when xmlParseFile is failed
Change-Id: Iaec7903f9f6540bc8266648c7b4a060c072e7e04
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit
276468714b0b8f73a3e557a3f905fb981ac1b81f)
sooyeon.kim [Tue, 11 Dec 2018 12:14:35 +0000 (21:14 +0900)]
Add null checker to avoid crash
Change-Id: I6c042bdf48d86b33e106ad44b9e247b9ca7aef37
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
(cherry picked from commit
b62842d2659f6c620230cd85a0de4f4ecbe5bd75)
Wonnam Jang [Mon, 14 Jan 2019 10:27:21 +0000 (19:27 +0900)]
Add and update info logs
Change-Id: Ibdb56797264b217947a57c040a0c74c66dda427c
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
Wonnam Jang [Wed, 28 Nov 2018 10:54:53 +0000 (19:54 +0900)]
Remove to send BT RC command
Change-Id: I3c4a65a43ce43d6b7126ce9f34d6d4bef4ec7a4c
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
Wonnam Jang [Mon, 19 Nov 2018 10:35:54 +0000 (19:35 +0900)]
Fix processing timer
Change-Id: I7c92d29b7da5132eeb2924cd7f7ccd3d567a5981
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
sooyeon.kim [Mon, 15 Oct 2018 15:31:07 +0000 (00:31 +0900)]
Fix dbus delay issue
Change-Id: I3b9dc4839ebe0ab84764bbe3db5fdfc0f1c5d5e3
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
Wonnam Jang [Fri, 12 Oct 2018 08:14:50 +0000 (17:14 +0900)]
Change to VOICE_RECOGNITION_SERVICE as sound stream
Change-Id: I37f6a2fbbfff5eace0c0768b24f2353ff6e44d06
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
sooyeon.kim [Tue, 28 Aug 2018 06:30:27 +0000 (15:30 +0900)]
Fix spelling errata
Change-Id: I342d264e2d8372fe1c3ec3fcc507d694603b5cf3
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sooyeon.kim [Wed, 8 Aug 2018 04:49:59 +0000 (04:49 +0000)]
Merge "Add line coverage tags" into tizen
sooyeon.kim [Tue, 31 Jul 2018 10:01:14 +0000 (19:01 +0900)]
Add line coverage tags
Change-Id: I5877734f71e8212272b1f9fc5a574a3f28207132
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sooyeon.kim [Mon, 30 Jul 2018 05:48:54 +0000 (14:48 +0900)]
Fix dbus delay when requesting hello
Change-Id: I5417ce2db0e59a77895f3185348019c030279d19
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sooyeon.kim [Tue, 26 Jun 2018 11:04:25 +0000 (20:04 +0900)]
Fix thread unsafety issue
Change-Id: I21199c2704ea455515280271aa5cfe85a430550b
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
Wonnam Jang [Thu, 24 May 2018 12:36:45 +0000 (21:36 +0900)]
change engine name for tv profile
Change-Id: I2222f08ec0d20b3bcc04678c1e6d94dd4a203153
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
Wonnam Jang [Tue, 8 May 2018 05:22:42 +0000 (14:22 +0900)]
check return value from vconf
Change-Id: Ie79376aa6da42cb8a200b0fb10df65e30b2175ea
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
sooyeon.kim [Mon, 30 Apr 2018 08:56:34 +0000 (17:56 +0900)]
Fix dbus policy
Change-Id: I181f10d9fa277a80df7894099158f4a387306f41
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sooyeon.kim [Mon, 30 Apr 2018 02:14:25 +0000 (11:14 +0900)]
Fix system hardening(voice_getengine)
Change-Id: Iecd370518bff72f77458b4fa5f4b6003f69573c8
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
sungrae jo [Tue, 24 Apr 2018 06:21:26 +0000 (15:21 +0900)]
Remove unnecessary file
Signed-off-by: sungrae jo <seongrae.jo@samsung.com>
Change-Id: I39625e71204a12d77ee0cd95a4592399780a99d0
Wonnam Jang [Thu, 19 Apr 2018 09:55:35 +0000 (18:55 +0900)]
Change build macro for tv profile
Change-Id: Iefc63b774a5c2f91d9e146814833336634748265
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
Wonnam Jang [Thu, 12 Apr 2018 11:23:34 +0000 (20:23 +0900)]
Correct to check return of fread
Change-Id: I59e5b05bc4e6586b086112e919cd335a8feca2fd
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
Wonnam Jang [Tue, 27 Mar 2018 07:49:58 +0000 (16:49 +0900)]
Remove duplicated group closure
Change-Id: I45902b0a4e7a94783b303ca960a84eb6576796cf
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
sungrae jo [Tue, 13 Mar 2018 08:25:19 +0000 (17:25 +0900)]
Fixed unchecked return value issue.
Signed-off-by: sungrae jo <seongrae.jo@samsung.com>
Change-Id: I25a3439b4cfe116ddea5711716614c666128e013
Wonnam Jang [Thu, 8 Mar 2018 00:02:04 +0000 (09:02 +0900)]
Load default config file when user config is invalid
Change-Id: Ia34d37a7799c923b1e6127f1bd127868a59a380d
Signed-off-by: Wonnam Jang <wn.jang@samsung.com>
sooyeon.kim [Fri, 2 Mar 2018 04:53:44 +0000 (13:53 +0900)]
Fix refer tzplatform apis
Change-Id: I88f2fb31ab887d501a3f1611dcf3c3a6fc5b7c98
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>