sdk/emulator/qemu.git
9 years agoMerge "brillcodec: initialized AVPacket variable." into tizen_2.3
SeokYeon Hwang [Tue, 21 Oct 2014 06:19:08 +0000 (15:19 +0900)]
Merge "brillcodec: initialized AVPacket variable." into tizen_2.3

9 years agoVIGS & YaGL: Fixed the incorrect condition
jinhyung.jo [Tue, 21 Oct 2014 04:27:16 +0000 (13:27 +0900)]
VIGS & YaGL: Fixed the incorrect condition

Fix a wrong variable name, dobj -> wqobj.

Change-Id: I7dbd5e110e747343aeefb29c23ab4d28d35c873b
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
9 years agoRevert "sdb: fix sdbd port to a dynamic number"
shingil.kang [Tue, 21 Oct 2014 02:36:48 +0000 (11:36 +0900)]
Revert "sdb: fix sdbd port to a dynamic number"

Change-Id: I33a18317f22ba804b977ebae198c27fef75bdfc3
Signed-off-by: shingil.kang <shingil.kang@samsung.com>
9 years agobrillcodec: initialized AVPacket variable.
Kitae Kim [Tue, 21 Oct 2014 01:42:14 +0000 (10:42 +0900)]
brillcodec: initialized AVPacket variable.

there is a case when AVPacket variable can be used without initialization.

Change-Id: I973cb1f39ae2c7c5fc40cefe99751587a33373d5
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agonew_debug_ch: Extended length of channel name
jinhyung.jo [Thu, 16 Oct 2014 09:34:24 +0000 (18:34 +0900)]
new_debug_ch: Extended length of channel name

Extend length to name field of channel structure to prevent an incorrect reference.
Even if a channel name is max length(15), it is always null terminated.

Change-Id: I7a82837ab091670e3a24418f1b6cca1a23bfc013
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
9 years agoconfigure: remove --disable-coroutine-pool on Windows
SeokYeon Hwang [Mon, 20 Oct 2014 06:44:09 +0000 (15:44 +0900)]
configure: remove --disable-coroutine-pool on Windows

Change-Id: I02c3e4c787a79164fc3ce3fd32679182f5d47b94
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
9 years agocoroutine-win32.c: Add noinline attribute to work around gcc bug
Peter Maydell [Mon, 23 Jun 2014 14:55:03 +0000 (15:55 +0100)]
coroutine-win32.c: Add noinline attribute to work around gcc bug

A gcc codegen bug in x86_64-w64-mingw32-gcc (GCC) 4.6.3 means that
non-debug builds of QEMU for Windows tend to assert when using
coroutines. Work around this by marking qemu_coroutine_switch
as noinline.

If we allow gcc to inline qemu_coroutine_switch into
coroutine_trampoline, then it hoists the code to get the
address of the TLS variable "current" out of the while() loop.
This is an invalid transformation because the SwitchToFiber()
call may be called when running thread A but return in thread B,
and so we might be in a different thread context each time
round the loop. This can happen quite often.  Typically.
a coroutine is started when a VCPU thread does bdrv_aio_readv:

     VCPU thread

     main VCPU thread coroutine      I/O coroutine
        bdrv_aio_readv ----->
                                     start I/O operation
                                       thread_pool_submit_co
                       <------------ yields
        back to emulation

Then I/O finishes and the thread-pool.c event notifier triggers in
the I/O thread.  event_notifier_ready calls thread_pool_co_cb, and
the I/O coroutine now restarts *in another thread*:

     iothread

     main iothread coroutine         I/O coroutine (formerly in VCPU thread)
        event_notifier_ready
          thread_pool_co_cb ----->   current = I/O coroutine;
                                     call AIO callback

But on Win32, because of the bug, the "current" being set here the
current coroutine of the VCPU thread, not the iothread.

noinline is a good-enough workaround, and quite unlikely to break in
the future.

(Thanks to Paolo Bonzini for assistance in diagnosing the problem
and providing the detailed example/ascii art quoted above.)

Change-Id: I4a5f4960be4691f6e5d5ad7de7731e14ab594312
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1403535303-14939-1-git-send-email-peter.maydell@linaro.org
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
9 years agoMerge "brillcodec: source clean-up" into tizen_2.3
Sangho Park [Mon, 20 Oct 2014 00:41:43 +0000 (09:41 +0900)]
Merge "brillcodec: source clean-up" into tizen_2.3

9 years agoMerge "brillcodec: use parser APIs to fix broken images in case of mpegts." into...
Sangho Park [Mon, 20 Oct 2014 00:41:34 +0000 (09:41 +0900)]
Merge "brillcodec: use parser APIs to fix broken images in case of mpegts." into tizen_2.3

9 years agoMerge "brillcodec: clean-up source" into tizen_2.3
Sangho Park [Mon, 20 Oct 2014 00:41:21 +0000 (09:41 +0900)]
Merge "brillcodec: clean-up source" into tizen_2.3

9 years agoMerge "brillcodec: remove redundant memory copy when decoding video" into tizen_2.3
Sangho Park [Mon, 20 Oct 2014 00:41:13 +0000 (09:41 +0900)]
Merge "brillcodec: remove redundant memory copy when decoding video" into tizen_2.3

9 years agobrillcodec: source clean-up
Kitae Kim [Sat, 6 Sep 2014 07:47:38 +0000 (16:47 +0900)]
brillcodec: source clean-up

remove duplicated sources when resampling audio buffer.

Change-Id: I31aed8e705c3eb7fa76b67c247efbe2d733abf4e
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agobrillcodec: use parser APIs to fix broken images in case of mpegts.
Kitae Kim [Thu, 28 Aug 2014 05:54:51 +0000 (14:54 +0900)]
brillcodec: use parser APIs to fix broken images in case of mpegts.

Some decoders are required to use parsers, especially mpeg2video
and parser APIs help them to fix broken frame issue.

Change-Id: I48d413bbd57fafd52db3e810313f308ced3d89e8
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agobrillcodec: clean-up source
SeokYeon Hwang [Sat, 2 Aug 2014 09:21:05 +0000 (18:21 +0900)]
brillcodec: clean-up source

brillcodec is separated into two source files.
Using macro to get a proper codec context.

Change-Id: I5dfc4f0707b5cf6d98653b65ab8b121ea48f5121
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
9 years agobrillcodec: remove redundant memory copy when decoding video
SeokYeon Hwang [Sat, 2 Aug 2014 08:43:31 +0000 (17:43 +0900)]
brillcodec: remove redundant memory copy when decoding video

This patch improve performance when playing HD+ video.
Remove maru_brill_codec_get_picture_size() function. We use avpicture_get_size() and avpicture_fill() instead.

Change-Id: I7b09157ee5351836c1e37862222c3042b34fb9da
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
9 years agomaru_err_table: prevent double free case.
Kitae Kim [Thu, 16 Oct 2014 05:19:31 +0000 (14:19 +0900)]
maru_err_table: prevent double free case.

Duplicate source path to avoid double free case
becuase the path might be released at caller side.

Change-Id: I3a3b2a3605c4c4fbca13c6496c898a0f8e268348
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agoeventcast: add evencast_ define
Kitae Kim [Wed, 15 Oct 2014 10:26:44 +0000 (19:26 +0900)]
eventcast: add evencast_ define

add those macros to avoid redundant declarations

Change-Id: I524d94abacfcb7ab191f2707d07321d460a9a60e
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agoMerge "eventcast: fix build error on Mac OS X." into tizen_2.3
SeokYeon Hwang [Fri, 17 Oct 2014 07:49:03 +0000 (16:49 +0900)]
Merge "eventcast: fix build error on Mac OS X." into tizen_2.3

9 years agoeventcast: fix build error on Mac OS X.
Kitae Kim [Fri, 17 Oct 2014 07:46:19 +0000 (16:46 +0900)]
eventcast: fix build error on Mac OS X.

CONFIG_SHM is not defined. It causes duplicated symbol declaration.

Change-Id: I4bbd1b8f9d609526f071ea71fd1a47752ee6c7de
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agoosutil: fix compilation error on Windows
SeokYeon Hwang [Fri, 17 Oct 2014 07:36:29 +0000 (16:36 +0900)]
osutil: fix compilation error on Windows

Change-Id: Ife4198593e6bc17282fd29c3a064b5b3b5d20d0d
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
9 years agoMerge changes I4dde16ab,Ibae6431f into tizen_2.3
SeokYeon Hwang [Fri, 17 Oct 2014 07:04:56 +0000 (16:04 +0900)]
Merge changes I4dde16ab,Ibae6431f into tizen_2.3

* changes:
  hw: remove duplicate source and header
  build: package version up (2.0.33)

9 years agoMerge "hds: bug fixed - device hotplug checking routine" into tizen_2.3
SeokYeon Hwang [Fri, 17 Oct 2014 07:04:33 +0000 (16:04 +0900)]
Merge "hds: bug fixed - device hotplug checking routine" into tizen_2.3

9 years agoMerge "keyboard: deleted conditional codes to check host keyboard state" into tizen_2.3
SeokYeon Hwang [Fri, 17 Oct 2014 07:04:24 +0000 (16:04 +0900)]
Merge "keyboard: deleted conditional codes to check host keyboard state" into tizen_2.3

9 years agohds: bug fixed - device hotplug checking routine
Jinhyung Choi [Fri, 17 Oct 2014 06:01:50 +0000 (15:01 +0900)]
hds: bug fixed - device hotplug checking routine

Change-Id: Ica280016b1b41ccac0b5ef80d4f1f84db557cb6d
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
9 years agobrillcodec: revert this module until resolving plugin probe issue.
Kitae Kim [Fri, 17 Oct 2014 06:17:29 +0000 (15:17 +0900)]
brillcodec: revert this module until resolving plugin probe issue.

Change-Id: Ib7e20ece682c931ba0ac3944b673d0747e1b00fd
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agohw: remove duplicate source and header
SeokYeon Hwang [Fri, 17 Oct 2014 06:52:08 +0000 (15:52 +0900)]
hw: remove duplicate source and header

Change-Id: I4dde16ab69865d24d89a8ed92184eee134b407a5
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
9 years agobuild: package version up (2.0.33)
SeokYeon Hwang [Fri, 17 Oct 2014 06:09:14 +0000 (15:09 +0900)]
build: package version up (2.0.33)

Change-Id: Ibae6431fd3f3eda632e0cd2de824c754b8a93b72
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
9 years agokeyboard: deleted conditional codes to check host keyboard state
sungmin ha [Fri, 17 Oct 2014 04:53:41 +0000 (13:53 +0900)]
keyboard: deleted conditional codes to check host keyboard state

Change-Id: Ica22d3b7bb6ee37b11596ac318d0e004592c67f6
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
9 years agoMerge branch 'tizen' into tizen_2.3
SeokYeon Hwang [Thu, 16 Oct 2014 09:38:57 +0000 (18:38 +0900)]
Merge branch 'tizen' into tizen_2.3

Conflicts:
tizen/src/util/osutil.c

Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
9 years agopackage: version up
Munkyu Im [Thu, 16 Oct 2014 06:47:25 +0000 (15:47 +0900)]
package: version up

Change-Id: I0027c60769b71f0a9f62b1943908683cc3706005
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
9 years agosdcard: Fix multiple attach
Munkyu Im [Thu, 16 Oct 2014 06:34:48 +0000 (15:34 +0900)]
sdcard: Fix multiple attach

Lock is released when free fd or handle.

Change-Id: I74956c0c136d504bc52eeb51bfd8a995f9cf15b9
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
9 years agoMerge branch 'tizen' into tizen_2.3
SeokYeon Hwang [Thu, 16 Oct 2014 01:56:08 +0000 (10:56 +0900)]
Merge branch 'tizen' into tizen_2.3

Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
Conflicts:
hw/virtio/virtio-pci.c
hw/virtio/virtio-pci.h
package/build.macos-64
package/build.ubuntu-32
package/build.ubuntu-64
package/build.windows-32
package/changelog
package/pkginfo.manifest
tizen/src/Makefile.tizen
tizen/src/Makefile.tizen.i386
tizen/src/debug_ch.c
tizen/src/debug_ch.h
tizen/src/display/maru_sdl.c
tizen/src/display/maru_sdl_processing.c
tizen/src/display/maru_shm.c
tizen/src/display/maru_shm.h
tizen/src/ecs/Makefile.tizen
tizen/src/ecs/ecs.c
tizen/src/ecs/ecs_eventcast.h
tizen/src/ecs/ecs_msg.c
tizen/src/ecs/ecs_tethering.c
tizen/src/emul_state.c
tizen/src/emul_state.h
tizen/src/emulator.c
tizen/src/eventcast/common.h
tizen/src/eventcast/msg/eventcast.proto
tizen/src/hw/maru_pm.c
tizen/src/hw/pci/maru_brillcodec.c
tizen/src/hw/virtio/maru_virtio_jack.h
tizen/src/hw/virtio/maru_virtio_nfc.c
tizen/src/hw/virtio/maru_virtio_sensor.h
tizen/src/sdb.c
tizen/src/sdb.h
tizen/src/skin/client/skins/mobile-320x480-3btn/default.dbi
tizen/src/skin/client/skins/mobile-480x800-3btn/default.dbi
tizen/src/skin/client/skins/mobile-720x1280-3btn/default.dbi
tizen/src/skin/client/skins/mobile-general-3btn/default.dbi
tizen/src/skin/client/skins/wearable-general-1btn/default.dbi
tizen/src/skin/client/src/org/tizen/emulator/skin/EmulatorSkin.java
tizen/src/skin/maruskin_operation.c
tizen/src/skin/maruskin_server.c
tizen/src/tethering/Makefile.tizen
tizen/src/tethering/app_tethering.h
tizen/src/tethering/common.h
tizen/src/tethering/genmsg/tethering.pb-c.c
tizen/src/tethering/genmsg/tethering.pb-c.h
tizen/src/tethering/touch.h
tizen/src/util/osutil-linux.c
tizen/src/util/osutil-win32.c
tizen/src/util/osutil.h

9 years agobuild: remove gcc dependency on Mac OS X.
Kitae Kim [Fri, 10 Oct 2014 01:28:47 +0000 (10:28 +0900)]
build: remove gcc dependency on Mac OS X.

Change-Id: I1ffa24aafe9fbdfddcb72e4d0ae4bf4e52ef2b87
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agoosutil: arrange source code about proxy
Munkyu Im [Mon, 15 Sep 2014 11:27:18 +0000 (20:27 +0900)]
osutil: arrange source code about proxy

Integrity duplicated codes.
Add logs.

Change-Id: I8f58db623270c32dba5687310e6553f67833cc69
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
9 years agomenu: added proxy arguments for ECP
GiWoong Kim [Thu, 11 Sep 2014 05:18:54 +0000 (14:18 +0900)]
menu: added proxy arguments for ECP

Location page needs host proxy information for browsing map.

Change-Id: I6342b5660f4ff49ce3ed7087385cb31aa869b4eb
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
9 years agoeventcast: fix build errors
Kitae Kim [Mon, 13 Oct 2014 12:50:14 +0000 (21:50 +0900)]
eventcast: fix build errors

- add missing Makefile.objs.
- modify header path.
- add stub function in case of disable-sdl and disable-shm.

Change-Id: Ib35650c14681317e0f1c6b892c318fcfaea5727f
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agosdcard: Add lock/unlock
Munkyu Im [Fri, 12 Sep 2014 07:53:42 +0000 (16:53 +0900)]
sdcard: Add lock/unlock

Add file lock to avoid multiple mount/umount.

Change-Id: I68d6b46b54b1b0f9966c684ec5daa57ed5db8b6e
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
9 years agoMerge "HAX: fix performance degradation on HAX" into tizen_2.3
Sangho Park [Tue, 14 Oct 2014 15:40:38 +0000 (00:40 +0900)]
Merge "HAX: fix performance degradation on HAX" into tizen_2.3

9 years agobuild: package version up (2.0.31)
Jinhyung Choi [Mon, 13 Oct 2014 09:09:08 +0000 (18:09 +0900)]
build: package version up (2.0.31)

Change-Id: Ic1a33ed243c0bd9a5ee9e5fef472a5c9624d34f0
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
9 years agohds: added "Host Directory Sharing" feature
Jinhyung Choi [Mon, 13 Oct 2014 09:07:59 +0000 (18:07 +0900)]
hds: added "Host Directory Sharing" feature

Change-Id: Ic75e1c907d7a47bbb4cf3a42b8d084e709790541
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
9 years agoeventcast: rename tethering to eventcast 77/28577/2
Kitae Kim [Wed, 8 Oct 2014 08:13:45 +0000 (17:13 +0900)]
eventcast: rename tethering to eventcast

naming tethering might be confusing to users.

Change-Id: I154e59aefd932728cb3b73ece6c14d4223cc03de
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
9 years agoHAX: fix performance degradation on HAX
SeokYeon Hwang [Fri, 1 Aug 2014 04:04:32 +0000 (13:04 +0900)]
HAX: fix performance degradation on HAX

HAX should listen to only main memory address space.
This patch would enhance performance on Windows and MacOS.

Change-Id: I3589de6db5846329314cfb3ed98f17355efe4fe7
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
9 years agoMerge "ecs: refactoring injector_req message handling" into tizen_2.3
Jinhyung Choi [Tue, 7 Oct 2014 05:31:00 +0000 (14:31 +0900)]
Merge "ecs: refactoring injector_req message handling" into tizen_2.3

9 years agopackage: version up(2.0.11) 32/28232/2
sungmin ha [Wed, 1 Oct 2014 05:28:36 +0000 (14:28 +0900)]
package: version up(2.0.11)

up to 2.0.11

Change-Id: If2f315c3d5c2490e38f859fb9ba9e93bbdc3db73
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
9 years agoecs: refactoring injector_req message handling
Jinhyung Choi [Fri, 19 Sep 2014 08:48:23 +0000 (17:48 +0900)]
ecs: refactoring injector_req message handling

Change-Id: Id2704b4791123b1b42b165ca77119e6986d222f3
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
9 years agoweb-viewer: added init and shutdown logic of nodejs and websocket 04/28204/12
sungmin ha [Tue, 30 Sep 2014 08:22:53 +0000 (17:22 +0900)]
web-viewer: added init and shutdown logic of nodejs and websocket

Change-Id: Ib9c9f99be49f6e40f51cb16506adc9d61bb66f1a
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agoMerge "package: version up(2.0.30)" into tizen_2.3
SeokYeon Hwang [Wed, 1 Oct 2014 08:33:42 +0000 (17:33 +0900)]
Merge "package: version up(2.0.30)" into tizen_2.3

10 years agopackage: version up(2.0.30)
sungmin ha [Wed, 1 Oct 2014 05:25:08 +0000 (14:25 +0900)]
package: version up(2.0.30)

up to 2.0.30

Change-Id: I896bb3256e408692a1f7e72c12ffe90b11956828
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agospice: modified default scale 1/2
sungmin ha [Mon, 15 Sep 2014 05:30:06 +0000 (14:30 +0900)]
spice: modified default scale 1/2

Change-Id: I792b4f393ce120808cb2aa2eaae85b6eb79847a1
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agomenu: modified SDB shell command 66/27866/3
GiWoong Kim [Sat, 20 Sep 2014 03:02:50 +0000 (12:02 +0900)]
menu: modified SDB shell command

To close a factory gnome-terminal after the SDB session period,
suicide command should be reserved by host shell on Ubuntu.

Change-Id: I090e64733834fd7a95b060fb7ebb1219ec34e950
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoskin: add Timer for shell closing 41/27741/2
GiWoong Kim [Thu, 18 Sep 2014 10:19:46 +0000 (19:19 +0900)]
skin: add Timer for shell closing

Change-Id: I169713e7667c1983a672c0eafdde2634abbb05ee
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoMerge "bug fixed: status of earjack & usb" into tizen
SeokYeon Hwang [Mon, 22 Sep 2014 10:19:07 +0000 (03:19 -0700)]
Merge "bug fixed: status of earjack & usb" into tizen

10 years agoMerge "skin: added wearable-360x480-1btn skin" into tizen
SeokYeon Hwang [Mon, 22 Sep 2014 10:18:01 +0000 (03:18 -0700)]
Merge "skin: added wearable-360x480-1btn skin" into tizen

10 years agoMerge changes I31aed8e7,Ibdbd63ea,I48d413bb into tizen
SeokYeon Hwang [Mon, 22 Sep 2014 10:17:19 +0000 (03:17 -0700)]
Merge changes I31aed8e7,Ibdbd63ea,I48d413bb into tizen

* changes:
  brillcodec: source clean-up
  configure: modify libav configuration
  brillcodec: use parser APIs to fix broken images in case of mpegts.

10 years agoMerge "tethering: remove build depedency." into tizen
SeokYeon Hwang [Mon, 22 Sep 2014 10:16:50 +0000 (03:16 -0700)]
Merge "tethering: remove build depedency." into tizen

10 years agoMerge "emulator: add null-terminated to string" into tizen
SeokYeon Hwang [Mon, 22 Sep 2014 10:16:06 +0000 (03:16 -0700)]
Merge "emulator: add null-terminated to string" into tizen

10 years agopackage: version up
GiWoong Kim [Sat, 20 Sep 2014 03:09:26 +0000 (12:09 +0900)]
package: version up

2.0.29

Change-Id: I3dcff543558aea6b80fcc9305723e37d402a0364
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agomenu: modified SDB shell command
GiWoong Kim [Sat, 20 Sep 2014 03:02:50 +0000 (12:02 +0900)]
menu: modified SDB shell command

To close a factory gnome-terminal after the SDB session period,
suicide command should be reserved by host shell on Ubuntu.

Change-Id: I090e64733834fd7a95b060fb7ebb1219ec34e950
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agobug fixed: status of earjack & usb 97/27497/2
Jinhyung Choi [Mon, 15 Sep 2014 04:45:28 +0000 (13:45 +0900)]
bug fixed: status of earjack & usb

Change-Id: If5ba70014d67859366792eb7349082559a03e6bf
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
10 years agoskin: added wearable-360x480-1btn skin 44/27644/2
GiWoong Kim [Tue, 16 Sep 2014 09:02:24 +0000 (18:02 +0900)]
skin: added wearable-360x480-1btn skin

Change-Id: I89dc63b803f4318caa399af720487ffe377a43e6
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoemulator: add null-terminated to string 43/27643/2
GiWoong Kim [Mon, 15 Sep 2014 12:36:08 +0000 (21:36 +0900)]
emulator: add null-terminated to string

Change-Id: I6a8616b584b9a122c6c078723c7957be0c52be26
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: version up
GiWoong Kim [Thu, 18 Sep 2014 10:24:01 +0000 (19:24 +0900)]
package: version up

2.0.28

Change-Id: I515bd4bede8ce15ee688b0d78d21fff4151f5d35
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoskin: add Timer for shell closing
GiWoong Kim [Thu, 18 Sep 2014 10:19:46 +0000 (19:19 +0900)]
skin: add Timer for shell closing

Change-Id: I169713e7667c1983a672c0eafdde2634abbb05ee
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agotethering: remove build depedency. 61/27661/1
Kitae Kim [Wed, 17 Sep 2014 05:03:10 +0000 (14:03 +0900)]
tethering: remove build depedency.

when --disable-sdl or --disable-shm on Mac OS X,
encode_fb module get compilation errors because of depedencies.

Change-Id: I0a312acb9ba4b0ec77de5df960de852b8c55a890
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agoMerge "osutil: arrange source code about proxy" into tizen_2.3
Jinhyung Choi [Wed, 17 Sep 2014 04:28:27 +0000 (13:28 +0900)]
Merge "osutil: arrange source code about proxy" into tizen_2.3

10 years agoosutil: arrange source code about proxy
Munkyu Im [Mon, 15 Sep 2014 11:27:18 +0000 (20:27 +0900)]
osutil: arrange source code about proxy

Integrity duplicated codes.
Add logs.

Change-Id: I8f58db623270c32dba5687310e6553f67833cc69
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
10 years agopackage: version up
GiWoong Kim [Tue, 16 Sep 2014 09:07:38 +0000 (18:07 +0900)]
package: version up

2.0.27

Change-Id: Ie26253d2bbb1d8ad72362413ad2c238d5f77b71d
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoskin: apply profile skin as default for wearable
GiWoong Kim [Tue, 16 Sep 2014 09:05:30 +0000 (18:05 +0900)]
skin: apply profile skin as default for wearable

Change-Id: Ia5233158aaf1b3a295b45e68ec9d206bc58f3309
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoskin: added wearable-360x480-1btn skin
GiWoong Kim [Tue, 16 Sep 2014 09:02:24 +0000 (18:02 +0900)]
skin: added wearable-360x480-1btn skin

Change-Id: I89dc63b803f4318caa399af720487ffe377a43e6
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoemulator: add null-terminated to string
GiWoong Kim [Mon, 15 Sep 2014 12:36:08 +0000 (21:36 +0900)]
emulator: add null-terminated to string

Change-Id: I6a8616b584b9a122c6c078723c7957be0c52be26
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: version up
Munkyu Im [Mon, 15 Sep 2014 08:10:58 +0000 (17:10 +0900)]
package: version up

Change-Id: I1c58d0b73e4b495114cc4a11d1c3b3ec0e9d2d70
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
10 years agomenu: added proxy arguments for ECP
GiWoong Kim [Thu, 11 Sep 2014 05:18:54 +0000 (14:18 +0900)]
menu: added proxy arguments for ECP

Location page needs host proxy information for browsing map.

Change-Id: I6342b5660f4ff49ce3ed7087385cb31aa869b4eb
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
10 years agopackage: version up(2.0.10) 01/27501/1
sungmin ha [Mon, 15 Sep 2014 05:39:40 +0000 (14:39 +0900)]
package: version up(2.0.10)

Change-Id: I23cac2be426c6592789236f1da4c5a273d02c31b
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agospice: modified default scale 1/2 00/27500/1
sungmin ha [Mon, 15 Sep 2014 05:30:06 +0000 (14:30 +0900)]
spice: modified default scale 1/2

Change-Id: I792b4f393ce120808cb2aa2eaae85b6eb79847a1
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agobuild: version up (2.0.25)
Jinhyung Choi [Mon, 15 Sep 2014 02:54:16 +0000 (11:54 +0900)]
build: version up (2.0.25)

Change-Id: Ieb95032870c0c1801df2a80288607c8e9b7e3b91
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
10 years agobug fixed: status of earjack & usb
Jinhyung Choi [Mon, 15 Sep 2014 02:52:57 +0000 (11:52 +0900)]
bug fixed: status of earjack & usb

Change-Id: I0714e0b5fe6aae545b1d6eb0b44683e8d41009e6
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
10 years agopackage: version up
Munkyu Im [Fri, 12 Sep 2014 08:25:10 +0000 (17:25 +0900)]
package: version up

Change-Id: Iea774a3364bd0723cf1c6288669f03a7a2c590a3
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
10 years agosdcard: Add lock/unlock
Munkyu Im [Fri, 12 Sep 2014 07:53:42 +0000 (16:53 +0900)]
sdcard: Add lock/unlock

Add file lock to avoid multiple mount/umount.

Change-Id: I583f14e0d7667d722fb84ef86650625bc8789138
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
10 years agobrillcodec: source clean-up 90/27190/7
Kitae Kim [Sat, 6 Sep 2014 07:47:38 +0000 (16:47 +0900)]
brillcodec: source clean-up

remove duplicated sources when resampling audio buffer.

Change-Id: I31aed8e705c3eb7fa76b67c247efbe2d733abf4e
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agobuild: package version up (2.0.23)
Jinhyung Choi [Thu, 11 Sep 2014 11:29:23 +0000 (20:29 +0900)]
build: package version up (2.0.23)

Change-Id: I68c48d0f75ed7f9332ce69f4ad9802a9cf7cf8bb
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
10 years agosync: removed injector_ans when requests status
Jinhyung Choi [Thu, 11 Sep 2014 11:28:18 +0000 (20:28 +0900)]
sync: removed injector_ans when requests status

Change-Id: I2a7d2be298c1839318e083d23c66e7638440538d
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
10 years agoconfigure: modify libav configuration 89/27189/3
Kitae Kim [Sat, 6 Sep 2014 07:21:33 +0000 (16:21 +0900)]
configure: modify libav configuration

add --disable-libav option. in case of libav configure failure,
brillcodec module will not be compiled.

Change-Id: Ibdbd63ea57c22b02e3244d7d7441103d26e43ce8
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agospice-server: added auto port setting for tizen
sungmin ha [Wed, 3 Sep 2014 06:12:57 +0000 (15:12 +0900)]
spice-server: added auto port setting for tizen

Change-Id: Ifff5499cbc30b2f5d6571d33881773bd1f131e34
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agoMerge "emulator: add get_emul_serial_port func for logging" into tizen_2.3
SeokYeon Hwang [Thu, 11 Sep 2014 05:39:14 +0000 (14:39 +0900)]
Merge "emulator: add get_emul_serial_port func for logging" into tizen_2.3

10 years agobrillcodec: use parser APIs to fix broken images in case of mpegts. 08/26708/7
Kitae Kim [Thu, 28 Aug 2014 05:54:51 +0000 (14:54 +0900)]
brillcodec: use parser APIs to fix broken images in case of mpegts.

Some decoders are required to use parsers, especially mpeg2video
and parser APIs help them to fix broken frame issue.

Change-Id: I48d413bbd57fafd52db3e810313f308ced3d89e8
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agopackage: version up (2.0.9) 56/27156/1
jinhyung.jo [Fri, 5 Sep 2014 09:35:25 +0000 (18:35 +0900)]
package: version up (2.0.9)

maru_camera:
    Modified the query control logic
    Bug fix that missing fd close on error condition

Change-Id: I0e1584da43c3db4d579e22ea0907da6098409c67
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
10 years agomaru_camera: Modified the query control logic 55/27155/1
jinhyung.jo [Wed, 3 Sep 2014 09:43:40 +0000 (18:43 +0900)]
maru_camera: Modified the query control logic

Insert the prevent code for when queries default value of controls

Change-Id: I3f995645d0f4857e5e2a8d8873fd6eefb835e175
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
10 years agomaru_camera: Bug fix 54/27154/1
jinhyung.jo [Tue, 19 Aug 2014 08:16:33 +0000 (17:16 +0900)]
maru_camera: Bug fix

missing fd close on error condition

Change-Id: I9146550121654de8c70846edebcbd67690eac364
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
10 years agoemulator: add get_emul_serial_port func for logging
GiWoong Kim [Sat, 23 Aug 2014 01:05:37 +0000 (10:05 +0900)]
emulator: add get_emul_serial_port func for logging

Change-Id: Iead04f220523dd6da1211796bcb0b9044a8f2855
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoproxy: Save http proxy information
Munkyu Im [Thu, 4 Sep 2014 13:43:22 +0000 (22:43 +0900)]
proxy: Save http proxy information

It's for setting proxy in Emulator Control Panel.

Change-Id: Ica57435c08d7dbe458f36741208b39dce7428080
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
10 years agopackage: version up(2.0.8) 97/27097/1
sungmin ha [Thu, 4 Sep 2014 12:19:56 +0000 (21:19 +0900)]
package: version up(2.0.8)

up to 2.0.8

Change-Id: I5f51d8fd3daf6e79111ebbc3e05e7c9e43f0b2ab
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agospice-server: added auto port setting for tizen 01/27001/3
sungmin ha [Wed, 3 Sep 2014 06:12:57 +0000 (15:12 +0900)]
spice-server: added auto port setting for tizen

Change-Id: Ifff5499cbc30b2f5d6571d33881773bd1f131e34
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agobuild: version up
Sooyoung Ha [Thu, 4 Sep 2014 08:55:05 +0000 (17:55 +0900)]
build: version up

version update to 2.0.22
- enable the vmodem device using virtio.

Change-Id: Ife2f94c6f614d67d55a0f97bf10aca6eb2e5e557
Signed-off-by: Sooyoung Ha <yoosah.ha@samsung.com>
10 years agovmodem: enable the vmodem device using virtio.
Sooyoung Ha [Mon, 16 Jun 2014 13:33:02 +0000 (22:33 +0900)]
vmodem: enable the vmodem device using virtio.

Now, the telephony virtual modem will use the vmodem device to communicate
with ECP, not emulator daemon.

Change-Id: Icadf54f977f4da84da4cd9745e72b20e0b672548
Signed-off-by: Sooyoung Ha <yoosah.ha@samsung.com>
10 years agopackage: version up (2.0.21)
jinhyung.jo [Wed, 3 Sep 2014 09:58:52 +0000 (18:58 +0900)]
package: version up (2.0.21)

up to 2.0.21

Change-Id: I00045d572cf49d00809f9ce6895a4d6e91bff378
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
10 years agomaru_camera: Modified the query control logic
jinhyung.jo [Wed, 3 Sep 2014 09:43:40 +0000 (18:43 +0900)]
maru_camera: Modified the query control logic

Insert the prevent code for when queries default value of controls

Change-Id: I3f995645d0f4857e5e2a8d8873fd6eefb835e175
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
10 years agomaru_camera: Bug fix
jinhyung.jo [Tue, 19 Aug 2014 08:16:33 +0000 (17:16 +0900)]
maru_camera: Bug fix

missing fd close on error condition

Change-Id: I9146550121654de8c70846edebcbd67690eac364
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
10 years agopackage: version up(2.0.7) 09/26909/1
jinhyung.jo [Mon, 1 Sep 2014 09:23:02 +0000 (18:23 +0900)]
package: version up(2.0.7)

up to 2.0.7

Change-Id: Ifd210d8c78b01ececc56b1c4efcb46dacd5e06c4
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
10 years agonfc: Add getting status 40/26640/2
Munkyu Im [Wed, 27 Aug 2014 07:28:51 +0000 (16:28 +0900)]
nfc: Add getting status

Client can get nfc status from nfc device.

Change-Id: I1a10cfccebe6031aa6b70da3ad93dd834803029a
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
10 years agoMerge "tethering: add functions to get connected ip address and port" into tizen_2.3
SeokYeon Hwang [Thu, 28 Aug 2014 04:09:11 +0000 (13:09 +0900)]
Merge "tethering: add functions to get connected ip address and port" into tizen_2.3