17ec681f3Smrg# Copyright © 2017-2019 Intel Corporation 27ec681f3Smrg 37ec681f3Smrg# Permission is hereby granted, free of charge, to any person obtaining a copy 47ec681f3Smrg# of this software and associated documentation files (the "Software"), to deal 57ec681f3Smrg# in the Software without restriction, including without limitation the rights 67ec681f3Smrg# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 77ec681f3Smrg# copies of the Software, and to permit persons to whom the Software is 87ec681f3Smrg# furnished to do so, subject to the following conditions: 97ec681f3Smrg 107ec681f3Smrg# The above copyright notice and this permission notice shall be included in 117ec681f3Smrg# all copies or substantial portions of the Software. 127ec681f3Smrg 137ec681f3Smrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 147ec681f3Smrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 157ec681f3Smrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 167ec681f3Smrg# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 177ec681f3Smrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 187ec681f3Smrg# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 197ec681f3Smrg# SOFTWARE. 207ec681f3Smrg 217ec681f3Smrglibva_version = dep_va.version().split('.') 227ec681f3Smrg 237ec681f3Smrglibva_st = static_library( 247ec681f3Smrg 'va_st', 257ec681f3Smrg files( 267ec681f3Smrg 'buffer.c', 'config.c', 'context.c', 'display.c', 'image.c', 'picture.c', 277ec681f3Smrg 'picture_mpeg12.c', 'picture_mpeg4.c', 'picture_h264.c', 'picture_hevc.c', 287ec681f3Smrg 'picture_vc1.c', 'picture_mjpeg.c', 'picture_vp9.c','picture_av1.c','postproc.c', 297ec681f3Smrg 'subpicture.c', 'surface.c', 'picture_h264_enc.c', 'picture_hevc_enc.c', 307ec681f3Smrg ), 317ec681f3Smrg c_args : [ 327ec681f3Smrg '-DVA_DRIVER_INIT_FUNC=__vaDriverInit_@0@_@1@'.format( 337ec681f3Smrg libva_version[0], libva_version[1] 347ec681f3Smrg ), 357ec681f3Smrg ], 367ec681f3Smrg gnu_symbol_visibility : 'hidden', 377ec681f3Smrg include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux], 387ec681f3Smrg dependencies : [ 397ec681f3Smrg dep_va_headers, dep_x11_xcb, dep_xcb, dep_xcb_dri2, dep_xcb_dri3, 407ec681f3Smrg dep_libdrm, idep_mesautil, 417ec681f3Smrg ], 427ec681f3Smrg) 43