1*46c4c49dSIbrahim KanoucheLegacy classifier identifies GPL-1.0 or GPL-3.0. 2*46c4c49dSIbrahim KanoucheEXPECTED:Copyright,GPL-2.0,MIT 3*46c4c49dSIbrahim Kanouche/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) AND MIT) */ 4*46c4c49dSIbrahim Kanouche/* 5*46c4c49dSIbrahim Kanouche * compress_params.h - codec types and parameters for compressed data 6*46c4c49dSIbrahim Kanouche * streaming interface 7*46c4c49dSIbrahim Kanouche * 8*46c4c49dSIbrahim Kanouche * Copyright (C) 2011 Intel Corporation 9*46c4c49dSIbrahim Kanouche * Authors: Pierre-Louis Bossart <[email protected]> 10*46c4c49dSIbrahim Kanouche * Vinod Koul <[email protected]> 11*46c4c49dSIbrahim Kanouche * 12*46c4c49dSIbrahim Kanouche * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 13*46c4c49dSIbrahim Kanouche * 14*46c4c49dSIbrahim Kanouche * This program is free software; you can redistribute it and/or modify 15*46c4c49dSIbrahim Kanouche * it under the terms of the GNU General Public License as published by 16*46c4c49dSIbrahim Kanouche * the Free Software Foundation; version 2 of the License. 17*46c4c49dSIbrahim Kanouche * 18*46c4c49dSIbrahim Kanouche * This program is distributed in the hope that it will be useful, but 19*46c4c49dSIbrahim Kanouche * WITHOUT ANY WARRANTY; without even the implied warranty of 20*46c4c49dSIbrahim Kanouche * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21*46c4c49dSIbrahim Kanouche * General Public License for more details. 22*46c4c49dSIbrahim Kanouche * 23*46c4c49dSIbrahim Kanouche * You should have received a copy of the GNU General Public License along 24*46c4c49dSIbrahim Kanouche * with this program; if not, write to the Free Software Foundation, Inc., 25*46c4c49dSIbrahim Kanouche * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. 26*46c4c49dSIbrahim Kanouche * 27*46c4c49dSIbrahim Kanouche * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 28*46c4c49dSIbrahim Kanouche * 29*46c4c49dSIbrahim Kanouche * The definitions in this file are derived from the OpenMAX AL version 1.1 30*46c4c49dSIbrahim Kanouche * and OpenMAX IL v 1.1.2 header files which contain the copyright notice below. 31*46c4c49dSIbrahim Kanouche * 32*46c4c49dSIbrahim Kanouche * Copyright (c) 2007-2010 The Khronos Group Inc. 33*46c4c49dSIbrahim Kanouche * 34*46c4c49dSIbrahim Kanouche * Permission is hereby granted, free of charge, to any person obtaining 35*46c4c49dSIbrahim Kanouche * a copy of this software and/or associated documentation files (the 36*46c4c49dSIbrahim Kanouche * "Materials "), to deal in the Materials without restriction, including 37*46c4c49dSIbrahim Kanouche * without limitation the rights to use, copy, modify, merge, publish, 38*46c4c49dSIbrahim Kanouche * distribute, sublicense, and/or sell copies of the Materials, and to 39*46c4c49dSIbrahim Kanouche * permit persons to whom the Materials are furnished to do so, subject to 40*46c4c49dSIbrahim Kanouche * the following conditions: 41*46c4c49dSIbrahim Kanouche * 42*46c4c49dSIbrahim Kanouche * The above copyright notice and this permission notice shall be included 43*46c4c49dSIbrahim Kanouche * in all copies or substantial portions of the Materials. 44*46c4c49dSIbrahim Kanouche * 45*46c4c49dSIbrahim Kanouche * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 46*46c4c49dSIbrahim Kanouche * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 47*46c4c49dSIbrahim Kanouche * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 48*46c4c49dSIbrahim Kanouche * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 49*46c4c49dSIbrahim Kanouche * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 50*46c4c49dSIbrahim Kanouche * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 51*46c4c49dSIbrahim Kanouche * MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. 52*46c4c49dSIbrahim Kanouche * 53*46c4c49dSIbrahim Kanouche */ 54*46c4c49dSIbrahim Kanouche 55