codec: enable to build codec module on Mac.
authorKitae Kim <kt920.kim@samsung.com>
Mon, 5 Nov 2012 02:58:59 +0000 (11:58 +0900)
committerKitae Kim <kt920.kim@samsung.com>
Fri, 9 Nov 2012 07:51:32 +0000 (16:51 +0900)
Since gcc-4.7 patch for FFmpeg libs has been applied,
emulator does not need to disable codec module on Mac.

Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
tizen/src/Makefile.tizen
tizen/src/hw/maru_board.c

index ede2c29..75b0c8d 100755 (executable)
@@ -26,7 +26,7 @@ LIBS += -lavformat -lavcodec -lavutil -lm -lcurl -lGL -lXcomposite -lXext
 endif
 ifdef CONFIG_DARWIN
 # FIXME: disabled codec on Mac now
-LIBS += -lavformat -lavcodec -lavutil -lm
+LIBS += -lavformat -lavcodec -lavutil -lm
 endif
 
 ifdef CONFIG_DEBUG_EXEC
@@ -108,8 +108,8 @@ include $(SRC_PATH)/tizen/src/Makefile.tizen.$(TARGET_BASE_ARCH)
 obj-y += maru_brightness.o
 obj-y += maru_usb_touchscreen.o maru_virtio_touchscreen.o
 obj-y += maru_virtio_keyboard.o
-ifndef CONFIG_DARWIN
 obj-y += maru_codec.o
+ifndef CONFIG_DARWIN
 obj-$(CONFIG_PCI) += maru_camera_common_pci.o
 obj-$(CONFIG_LINUX) += maru_camera_linux_pci.o
 obj-$(CONFIG_WIN32) += maru_camera_win32_pci.o
index ff65e37..c65db90 100644 (file)
@@ -331,13 +331,10 @@ static void maru_x86_machine_init(MemoryRegion *system_memory,
         pc_pci_device_init(pci_bus);
     }
 
-#ifndef CONFIG_DARWIN
     // maru specialized device init...
     if (pci_enabled) {
-        //tizen_ac97_init(pci_bus);
         codec_init(pci_bus);        
     }
-#endif
 #ifdef CONFIG_YAGL
     pci_create_simple(pci_bus, -1, "yagl");
 #endif