hardware/intel/intel-driver
Revision | c98938c9e255fb44d04a5a91bde872c077be198d (tree) |
---|---|
Time | 2016-07-26 19:27:19 |
Author | Jaap Jan Meijer <jjmeijer88@gmai...> |
Commiter | Jaap Jan Meijer |
Android: fix Android build
@@ -44,6 +44,10 @@ LOCAL_SRC_FILES := \ | ||
44 | 44 | gen9_mfc.c \ |
45 | 45 | gen9_mfc_hevc.c \ |
46 | 46 | gen9_mfd.c \ |
47 | + gen9_vdenc.c \ | |
48 | + gen9_vp9_const_def.c \ | |
49 | + gen9_vp9_encoder.c \ | |
50 | + gen9_vp9_encoder_kernels.c \ | |
47 | 51 | gen75_picture_process.c \ |
48 | 52 | gen75_vme.c \ |
49 | 53 | gen75_vpp_gpe.c \ |
@@ -63,6 +67,7 @@ LOCAL_SRC_FILES := \ | ||
63 | 67 | i965_gpe_utils.c \ |
64 | 68 | i965_post_processing.c \ |
65 | 69 | gen8_post_processing.c \ |
70 | + i965_yuv_coefs.c \ | |
66 | 71 | i965_render.c \ |
67 | 72 | i965_vpp_avs.c \ |
68 | 73 | gen8_render.c \ |
@@ -72,7 +77,8 @@ LOCAL_SRC_FILES := \ | ||
72 | 77 | intel_driver.c \ |
73 | 78 | intel_memman.c \ |
74 | 79 | object_heap.c \ |
75 | - intel_media_common.c \ | |
80 | + intel_media_common.c \ | |
81 | + vp9_probs.c \ | |
76 | 82 | $(NULL) |
77 | 83 | |
78 | 84 | GEN := $(LOCAL_PATH)/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 */ |