1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
/* Copyright (C) 2008 Vincent Penquerc'h.
This file is part of the Kate codec library.
Written by Vincent Penquerc'h.
Use, distribution and reproduction of this library is governed
by a BSD style source license included with this source in the
file 'COPYING'. Please read these terms before distributing. */
#ifndef KATE_ksrt_h_GUARD
#define KATE_ksrt_h_GUARD
struct srt_data {
unsigned int event_index;
};
extern void *new_srt_data(void);
extern void free_srt_data(void*);
extern void write_srt_event(FILE *fout,void *data,const kate_event *ev,ogg_int64_t granpos);
#endif
|