From 4ed09fd35085c96ae8edbda87757187f75eeac8d Mon Sep 17 00:00:00 2001 From: Vladimir Chtchetkine Date: Thu, 18 Aug 2011 09:42:40 -0700 Subject: 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 --- Makefile.common | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile.common') 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 -- cgit v1.1