summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--device_base.mk1
-rwxr-xr-xlibcolorconvertyv12/Android.mk27
-rwxr-xr-xlibcolorconvertyv12/IYV12ColorConverter.c76
3 files changed, 0 insertions, 104 deletions
diff --git a/device_base.mk b/device_base.mk
index 4990ab9..e44ee58 100644
--- a/device_base.mk
+++ b/device_base.mk
@@ -123,7 +123,6 @@ PRODUCT_PACKAGES += \
PRODUCT_PACKAGES += \
libcamera \
libstagefrighthw \
- libyv12colorconvert \
com.android.future.usb.accessory
# Input device calibration files
diff --git a/libcolorconvertyv12/Android.mk b/libcolorconvertyv12/Android.mk
deleted file mode 100755
index ee95db0..0000000
--- a/libcolorconvertyv12/Android.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-ifneq ($(filter crespo crespo4g,$(TARGET_DEVICE)),)
-
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_SRC_FILES := \
- IYV12ColorConverter.c
-
-
-LOCAL_MODULE := libyv12colorconvert
-
-LOCAL_CFLAGS :=
-
-LOCAL_ARM_MODE := arm
-
-LOCAL_STATIC_LIBRARIES :=
-LOCAL_SHARED_LIBRARIES :=
-
-LOCAL_C_INCLUDES := \
- $(TOP)/frameworks/base/include/media/stagefright/openmax \
- $(TOP)/frameworks/media/libvideoeditor/include
-
-include $(BUILD_SHARED_LIBRARY)
-endif
-
diff --git a/libcolorconvertyv12/IYV12ColorConverter.c b/libcolorconvertyv12/IYV12ColorConverter.c
deleted file mode 100755
index 7855bde..0000000
--- a/libcolorconvertyv12/IYV12ColorConverter.c
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- *
- * Copyright 2011 Samsung Electronics S.LSI Co. LTD
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/*
- * @file IYV12ColorConverter.cpp
- * @brief
- * @author SeungBeom Kim (sbcrux.kim@samsung.com)
- * @version 1.0
- * @history
- * 2010.7.27 : Create
- */
-
-#include <media/stagefright/openmax/OMX_IVCommon.h>
-#include <IYV12ColorConverter.h>
-
-
-int SEC_getDecoderOutputFormat()
-{
- return (int)OMX_COLOR_FormatYUV420Planar;
-}
-
-int SEC_convertDecoderOutputToYV12(
- void* decoderBits, int decoderWidth, int decoderHeight,
- ARect decoderRect, void* dstBits)
-{
- int ret = -1;
- return ret;
-}
-
-int SEC_getEncoderInputFormat()
-{
- return (int)OMX_COLOR_FormatYUV420Planar;
-}
-
-int SEC_convertYV12ToEncoderInput(
- void* srcBits, int srcWidth, int srcHeight,
- int encoderWidth, int encoderHeight, ARect encoderRect,
- void* encoderBits)
-{
- int ret = -1;
- return ret;
-}
-
-int SEC_getEncoderInputBufferInfo(
- int srcWidth, int srcHeight,
- int* encoderWidth, int* encoderHeight,
- ARect* encoderRect, int* encoderBufferSize)
-{
- int ret = -1;
- return ret;
-}
-
-void getYV12ColorConverter(IYV12ColorConverter *converter)
-{
- converter->getDecoderOutputFormat = SEC_getDecoderOutputFormat;
- converter->convertDecoderOutputToYV12 = SEC_convertDecoderOutputToYV12;
- converter->getEncoderInputFormat = SEC_getEncoderInputFormat;
- converter->convertDecoderOutputToYV12 = SEC_convertDecoderOutputToYV12;
- converter->getEncoderInputBufferInfo = SEC_getEncoderInputBufferInfo;
- return;
-}
-