2003-02-16 00:05:07 +00:00
|
|
|
/*
|
2003-03-06 23:39:40 +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
|
|
|
|
*/
|
|
|
|
|
2003-03-06 23:39:40 +00:00
|
|
|
/*!
|
|
|
|
\file
|
2003-05-20 06:30:25 +00:00
|
|
|
\version \$Id: r_srt.h,v 1.11 2003/05/20 06:30:25 mosu Exp $
|
2003-03-06 23:39:40 +00:00
|
|
|
\brief class definition for the Subripper subtitle reader
|
2003-05-18 20:57:08 +00:00
|
|
|
\author Moritz Bunkus <moritz@bunkus.org>
|
2003-03-06 23:39:40 +00:00
|
|
|
*/
|
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
#ifndef __R_SRT_H
|
|
|
|
#define __R_SRT_H
|
2003-02-16 00:05:07 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2003-03-06 23:39:40 +00:00
|
|
|
#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];
|
|
|
|
FILE *file;
|
2003-03-06 23:39:40 +00:00
|
|
|
textsubs_packetizer_c *textsubs_packetizer;
|
2003-05-02 20:11:34 +00:00
|
|
|
int act_wchar;
|
2003-05-20 06:30:25 +00:00
|
|
|
|
2003-02-27 09:52:37 +00:00
|
|
|
public:
|
2003-03-06 23:39:40 +00:00
|
|
|
srt_reader_c(track_info_t *nti) throw (error_c);
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual ~srt_reader_c();
|
|
|
|
|
2003-05-02 20:11:34 +00:00
|
|
|
virtual int read();
|
2003-03-06 23:39:40 +00:00
|
|
|
virtual packet_t *get_packet();
|
2003-05-02 21:49:42 +00:00
|
|
|
virtual void set_headers();
|
2003-05-20 06:30:25 +00:00
|
|
|
|
2003-05-02 20:11:34 +00:00
|
|
|
virtual int display_priority();
|
|
|
|
virtual void display_progress();
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-05-02 20:11:34 +00:00
|
|
|
static int probe_file(FILE *file, int64_t size);
|
2003-02-16 00:05:07 +00:00
|
|
|
};
|
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
#endif // __R_SRT_H
|