summaryrefslogtreecommitdiffstats
path: root/decoder.mk
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2015-08-13 10:59:13 +0530
committerMarco Nelissen <marcone@google.com>2015-10-16 20:15:49 +0000
commit8520690e241ad92a07893e198b2df417fe045d79 (patch)
tree1fd034f495a58663a5423622c0112a0ec63239c7 /decoder.mk
parent903fd2be3063609dd3cd7ad0691de46c1b52b7d1 (diff)
downloadandroid_external_libmpeg2-8520690e241ad92a07893e198b2df417fe045d79.tar.gz
android_external_libmpeg2-8520690e241ad92a07893e198b2df417fe045d79.tar.bz2
android_external_libmpeg2-8520690e241ad92a07893e198b2df417fe045d79.zip
Added deinterlacer
Decoder output is deinterlaced if a picture is signalled as interlaced Added SIMD optimizations for arm, armv8 and x86/x64 Bug: 20932810 Change-Id: I6079922f4fc8f1d3680e5169a4d8e70efe8ea471
Diffstat (limited to 'decoder.mk')
-rw-r--r--decoder.mk9
1 files changed, 9 insertions, 0 deletions
diff --git a/decoder.mk b/decoder.mk
index 7edccc2..c1e5861 100644
--- a/decoder.mk
+++ b/decoder.mk
@@ -40,6 +40,15 @@ libmpeg2d_srcs_c += decoder/impeg2d_pic_proc.c
libmpeg2d_srcs_c += decoder/impeg2d_pnb_pic.c
libmpeg2d_srcs_c += decoder/impeg2d_vld.c
libmpeg2d_srcs_c += decoder/impeg2d_vld_tables.c
+libmpeg2d_srcs_c += decoder/impeg2d_deinterlace.c
+
+libmpeg2d_srcs_c += common/icv_sad.c
+libmpeg2d_srcs_c += common/icv_variance.c
+libmpeg2d_srcs_c += common/ideint.c
+libmpeg2d_srcs_c += common/ideint_cac.c
+libmpeg2d_srcs_c += common/ideint_debug.c
+libmpeg2d_srcs_c += common/ideint_function_selector_generic.c
+libmpeg2d_srcs_c += common/ideint_utils.c
LOCAL_SRC_FILES := $(libmpeg2d_srcs_c) $(libmpeg2d_srcs_asm)