1 /* 2 * Bluetooth low-complexity, subband codec (SBC) 3 * 4 * Copyright (C) 2017 Aurelien Jacobs <aurel@gnuage.org> 5 * Copyright (C) 2008-2010 Nokia Corporation 6 * Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org> 7 * Copyright (C) 2004-2005 Henryk Ploetz <henryk@ploetzli.ch> 8 * Copyright (C) 2005-2006 Brad Midgley <bmidgley@xmission.com> 9 * 10 * This file is part of FFmpeg. 11 * 12 * FFmpeg is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU Lesser General Public 14 * License as published by the Free Software Foundation; either 15 * version 2.1 of the License, or (at your option) any later version. 16 * 17 * FFmpeg is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * Lesser General Public License for more details. 21 * 22 * You should have received a copy of the GNU Lesser General Public 23 * License along with FFmpeg; if not, write to the Free Software 24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 25 */ 26 27 /** 28 * @file 29 * SBC decoder tables 30 */ 31 32 #ifndef AVCODEC_SBCDEC_DATA_H 33 #define AVCODEC_SBCDEC_DATA_H 34 35 #include <stdint.h> 36 37 extern const int32_t ff_sbc_proto_4_40m0[]; 38 extern const int32_t ff_sbc_proto_4_40m1[]; 39 extern const int32_t ff_sbc_proto_8_80m0[]; 40 extern const int32_t ff_sbc_proto_8_80m1[]; 41 extern const int32_t ff_synmatrix4[8][4]; 42 extern const int32_t ff_synmatrix8[16][8]; 43 44 #endif /* AVCODEC_SBCDEC_DATA_H */ 45