aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
diff options
context:
space:
mode:
authorVladimir Chtchetkine <vchtchetkine@google.com>2011-08-18 09:42:40 -0700
committerVladimir Chtchetkine <vchtchetkine@google.com>2011-08-18 09:42:40 -0700
commit4ed09fd35085c96ae8edbda87757187f75eeac8d (patch)
treea4dee9e44deda454b6d2187a0fb408271b3c565c /Makefile.common
parentd4d22aef7ff40a47002ee1d53fbbbd7562f05596 (diff)
downloadexternal_qemu-4ed09fd35085c96ae8edbda87757187f75eeac8d.zip
external_qemu-4ed09fd35085c96ae8edbda87757187f75eeac8d.tar.gz
external_qemu-4ed09fd35085c96ae8edbda87757187f75eeac8d.tar.bz2
Video capturing code for Linux, and Windows
Contains API that connects to a camera device, and pulls video frames from it on request from the client. Change-Id: If1d80c57611afff637a7734ce5c3a2c874cfc85a
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common
index 93f15be..2179ae7 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -422,6 +422,7 @@ CORE_MISC_SOURCES = \
android/qemu-setup.c \
android/snapshot.c \
android/utils/timezone.c \
+ android/camera/camera-format-converters.c
$(call gen-hw-config-defs)
@@ -438,13 +439,16 @@ endif
ifeq ($(HOST_OS),linux)
CORE_MISC_SOURCES += usb-linux.c \
- qemu-thread.c
+ qemu-thread.c \
+ android/camera/camera-capture-linux.c
else
CORE_MISC_SOURCES += usb-dummy-android.c
endif
ifeq ($(HOST_OS),windows)
- CORE_MISC_SOURCES += tap-win32.c
+ CORE_MISC_SOURCES += tap-win32.c \
+ android/camera/camera-capture-windows.c
+
else
CORE_MISC_SOURCES += posix-aio-compat.c
endif