|
| 1 | +/* |
| 2 | + * Copyright (C) 2024 EasyTools S.A.S. |
| 3 | + * |
| 4 | + * Authors: Arnaud de Turckheim |
| 5 | + * |
| 6 | + * This program is free software; you can redistribute it and/or modify it |
| 7 | + * under the terms of the GNU Lesser General Public License as published by |
| 8 | + * the Free Software Foundation; either version 2.1 of the License, or |
| 9 | + * (at your option) any later version. |
| 10 | + * |
| 11 | + * This program is distributed in the hope that it will be useful, |
| 12 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | + * GNU Lesser General Public License for more details. |
| 15 | + * |
| 16 | + * You should have received a copy of the GNU Lesser General Public License |
| 17 | + * along with this program; if not, write to the Free Software Foundation, |
| 18 | + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
| 19 | + */ |
| 20 | + |
| 21 | +/** @file |
| 22 | + * @short Upipe module generating the application information table of DVB |
| 23 | + * streams |
| 24 | + */ |
| 25 | + |
| 26 | +#ifndef _UPIPE_TS_UPIPE_TS_AIT_GENRATOR_H_ |
| 27 | +/** @hidden */ |
| 28 | +#define _UPIPE_TS_UPIPE_TS_AIT_GENRATOR_H_ |
| 29 | +#ifdef __cplusplus |
| 30 | +extern "C" { |
| 31 | +#endif |
| 32 | + |
| 33 | +#include "upipe/upipe.h" |
| 34 | +#include "upipe-ts/upipe_ts_demux.h" |
| 35 | + |
| 36 | +#define UPIPE_TS_AITG_SIGNATURE UBASE_FOURCC('t','s',0x74,'g') |
| 37 | + |
| 38 | +/** @This returns the management structure for all ts_aitg pipes. |
| 39 | + * |
| 40 | + * @return pointer to manager |
| 41 | + */ |
| 42 | +struct upipe_mgr *upipe_ts_aitg_mgr_alloc(void); |
| 43 | + |
| 44 | +#ifdef __cplusplus |
| 45 | +} |
| 46 | +#endif |
| 47 | +#endif |
0 commit comments