mkvtoolnix/p_textsubs.h

53 lines
1.2 KiB
C
Raw Normal View History

/*
mkvmerge -- utility for splicing together matroska files
from component media subtypes
p_textsubs.h
Written by Moritz Bunkus <moritz@bunkus.org>
Distributed under the GPL
see the file COPYING for details
or visit http://www.gnu.org/copyleft/gpl.html
*/
/*!
\file
2003-06-15 14:03:28 +00:00
\version $Id$
\brief class definition for the simple text subtitle packetizer
2003-05-18 20:57:08 +00:00
\author Moritz Bunkus <moritz@bunkus.org>
*/
#ifndef __P_TEXTSUBS_H
#define __P_TEXTSUBS_H
#include "os.h"
#include "common.h"
#include "pr_generic.h"
#include "pr_generic.h"
class textsubs_packetizer_c: public generic_packetizer_c {
private:
int packetno, cc_utf8;
2003-06-19 14:25:42 +00:00
void *global_data;
int global_size;
char *codec_id;
public:
textsubs_packetizer_c(generic_reader_c *nreader, const char *ncodec_id,
const void *nglobal_data, int nglobal_size,
track_info_t *nti) throw (error_c);
virtual ~textsubs_packetizer_c();
virtual int process(unsigned char *_subs, int size, int64_t start = -1,
int64_t length = -1, int64_t bref = -1,
int64_t fref = -1);
virtual void set_headers();
2003-05-25 15:35:39 +00:00
virtual void dump_debug_info();
};
#endif // __P_TEXTSUBS_H