mkvtoolnix/r_srt.h

57 lines
1.1 KiB
C
Raw Normal View History

2003-02-16 00:05:07 +00:00
/*
mkvmerge -- utility for splicing together matroska files
2003-02-16 00:05:07 +00:00
from component media subtypes
r_srt.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 Subripper subtitle reader
2003-05-18 20:57:08 +00:00
\author Moritz Bunkus <moritz@bunkus.org>
*/
#ifndef __R_SRT_H
#define __R_SRT_H
2003-02-16 00:05:07 +00:00
#include "os.h"
2003-02-16 00:05:07 +00:00
#include <stdio.h>
#include "mm_io.h"
#include "common.h"
#include "pr_generic.h"
2003-02-16 00:05:07 +00:00
#include "p_textsubs.h"
class srt_reader_c: public generic_reader_c {
2003-02-27 09:52:37 +00:00
private:
2003-05-02 20:11:34 +00:00
char chunk[2048];
mm_io_c *mm_io;
textsubs_packetizer_c *textsubs_packetizer;
2003-05-02 20:11:34 +00:00
int act_wchar;
2003-02-27 09:52:37 +00:00
public:
srt_reader_c(track_info_t *nti) throw (error_c);
virtual ~srt_reader_c();
2003-05-02 20:11:34 +00:00
virtual int read();
virtual packet_t *get_packet();
virtual void set_headers();
virtual void identify();
2003-05-02 20:11:34 +00:00
virtual int display_priority();
virtual void display_progress();
2003-02-16 00:05:07 +00:00
static int probe_file(mm_io_c *mm_io, int64_t size);
2003-02-16 00:05:07 +00:00
};
#endif // __R_SRT_H