/usr/include/gpac/internal/vobsub.h is in libgpac-dev 0.4.5+svn3462~dfsg0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 79 80 81 82 | /*
* GPAC - Multimedia Framework C SDK
*
* Copyright (c) by Falco (Ivan Vecera) 2006
* All rights reserved
*
* This file is part of GPAC / Media Tools sub-project
*
* GPAC 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, or (at your option)
* any later version.
*
* GPAC 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 Lesser General Public
* License along with this library; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef _GF_VOBSUB_H_
#define _GF_VOBSUB_H_
#include <gpac/tools.h>
#ifdef __cplusplus
extern "C" {
#endif
#define VOBSUBIDXVER 7
typedef struct _tag_vobsub_pos
{
u64 filepos;
u64 start;
u64 stop;
} vobsub_pos;
typedef struct _tag_vobsub_lang
{
u32 id;
char *name;
GF_List *subpos;
} vobsub_lang;
typedef struct _tag_vobsub_file
{
u32 width;
u32 height;
u8 palette[16][4];
u32 num_langs;
vobsub_lang langs[32];
} vobsub_file;
GFINLINE static void vobsub_trim_ext(char *filename)
{
char *pos = strrchr(filename, '.');
if (pos != NULL) {
if (!stricmp(pos, ".idx") || !stricmp(pos, ".sub")) {
*pos = '\0';
}
}
}
s32 vobsub_lang_name(u16 id);
char *vobsub_lang_id(char *name);
GF_Err vobsub_read_idx(FILE *file, vobsub_file *vobsub, int *version);
void vobsub_free(vobsub_file *vobsub);
GF_Err vobsub_get_subpic_duration(char *data, u32 psize, u32 dsize, u32 *duration);
GF_Err vobsub_packetize_subpicture(FILE *fsub, u64 pts, char *data, u32 dataSize);
#ifdef __cplusplus
}
#endif
#endif /* _GF_VOBSUB_H_ */
|