mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 16:58:23 +01:00
5a7ffd5171
Line up this name with others. Signed-off-by: Jaroslav Kysela <perex@perex.cz>
39 lines
1.4 KiB
C
39 lines
1.4 KiB
C
/*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __TOPOLOGY_H
|
|
#define __TOPOLOGY_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
/* pre_processor */
|
|
struct tplg_pre_processor {
|
|
snd_config_t *input_cfg;
|
|
snd_config_t *output_cfg;
|
|
snd_output_t *output;
|
|
snd_output_t *dbg_output;
|
|
snd_config_t *current_obj_cfg;
|
|
snd_config_t *define_cfg;
|
|
snd_config_t *define_cfg_merged;
|
|
char *inc_path;
|
|
};
|
|
|
|
int pre_process(struct tplg_pre_processor *tplg_pp, char *config, size_t config_size,
|
|
const char *pre_processor_defs, const char *inc_path);
|
|
int init_pre_processor(struct tplg_pre_processor **tplg_pp, snd_output_type_t type,
|
|
const char *output_file);
|
|
void free_pre_processor(struct tplg_pre_processor *tplg_pp);
|
|
#endif
|