1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
* FPMs-TCTS SOFTWARE LIBRARY
*
* Copyright (c) 95 1995-2018 Faculte Polytechnique de Mons (TCTS lab)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* File: lib2.c
* Purpose: Wrapper to build a all-in-one library version of the
* multi-channel mode
*
* Authors: Pagel Vincent
* Email : mbrola@tcts.fpms.ac.be
*
* 2/09/98: Created
* Used to hide mbrola file structure from the outside when distributing
* lib
*/
#define MULTI_CHANNEL
#define LIBRARY
#include "../Misc/common.h"
#include "../Misc/vp_error.h"
#include "../Misc/mbralloc.h"
#include "../Engine/diphone.h"
#include "../Engine/mbrola.h"
#include "../Database/database.h"
#include "../Database/database_old.h"
#include "../Misc/audio.h"
#include "../Parser/parser.h"
#include "../Parser/input_fifo.h"
#include "../Parser/parser_input.h"
#include "../Database/hash_tab.h"
#include "../LibMultiChannel/multichannel.h"
#include "../Misc/mbralloc.c"
#include "../Database/little_big.c"
#include "../Misc/common.c"
#include "../Parser/phone.c"
#include "../Engine/diphone.c"
#include "../Misc/g711.c"
#include "../Misc/audio.c"
#include "../Engine/mbrola.c"
#include "../Database/diphone_info.c"
#include "../Database/database_old.c"
#include "../Database/database.c"
#include "../Database/zstring_list.c"
#include "../Parser/phonbuff.c"
#include "../Parser/fifo.c"
#include "../Parser/parser_input.c"
#include "../Parser/input_fifo.c"
#include "../Database/hash_tab.c"
#include "../LibMultiChannel/multichannel.c"
#include "../Misc/vp_error.c"
#ifdef BACON
#include "../Database/database_bacon.c"
#endif
#ifdef CEBAB
#include "../Database/database_cebab.c"
#endif
#if defined(ROMDATABASE_STORE) || defined(ROMDATABASE_INIT)
#include "../Database/rom_database.c"
#include "../Database/rom_handling.c"
#endif
|