• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/intel-driver


Commit MetaInfo

Revisionc98938c9e255fb44d04a5a91bde872c077be198d (tree)
Time2016-07-26 19:27:19
AuthorJaap Jan Meijer <jjmeijer88@gmai...>
CommiterJaap Jan Meijer

Log Message

Android: fix Android build

Change Summary

Incremental Difference

--- a/src/Android.mk
+++ b/src/Android.mk
@@ -44,6 +44,10 @@ LOCAL_SRC_FILES := \
4444 gen9_mfc.c \
4545 gen9_mfc_hevc.c \
4646 gen9_mfd.c \
47+ gen9_vdenc.c \
48+ gen9_vp9_const_def.c \
49+ gen9_vp9_encoder.c \
50+ gen9_vp9_encoder_kernels.c \
4751 gen75_picture_process.c \
4852 gen75_vme.c \
4953 gen75_vpp_gpe.c \
@@ -63,6 +67,7 @@ LOCAL_SRC_FILES := \
6367 i965_gpe_utils.c \
6468 i965_post_processing.c \
6569 gen8_post_processing.c \
70+ i965_yuv_coefs.c \
6671 i965_render.c \
6772 i965_vpp_avs.c \
6873 gen8_render.c \
@@ -72,7 +77,8 @@ LOCAL_SRC_FILES := \
7277 intel_driver.c \
7378 intel_memman.c \
7479 object_heap.c \
75- intel_media_common.c \
80+ intel_media_common.c \
81+ vp9_probs.c \
7682 $(NULL)
7783
7884 GEN := $(LOCAL_PATH)/intel_version.h
--- /dev/null
+++ b/src/intel_version.h
@@ -0,0 +1,36 @@
1+/*
2+ * Copyright (C) 2014 Intel Corporation
3+ *
4+ * Permission is hereby granted, free of charge, to any person obtaining a
5+ * copy of this software and associated documentation files (the
6+ * "Software"), to deal in the Software without restriction, including
7+ * without limitation the rights to use, copy, modify, merge, publish,
8+ * distribute, sub license, and/or sell copies of the Software, and to
9+ * permit persons to whom the Software is furnished to do so, subject to
10+ * the following conditions:
11+ *
12+ * The above copyright notice and this permission notice (including the
13+ * next paragraph) shall be included in all copies or substantial portions
14+ * of the Software.
15+ *
16+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19+ * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20+ * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23+ */
24+
25+#ifndef INTEL_VERSION_H
26+#define INTEL_VERSION_H
27+
28+/**
29+ * INTEL_DRIVER_GIT_VERSION:
30+ *
31+ * The full version identifier of libva-intel-driver, from a git
32+ * repository, in string form (suitable for string concatenation).
33+ */
34+#define INTEL_DRIVER_GIT_VERSION "1.7.1"
35+
36+#endif /* INTEL_VERSION_H */