mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
/*
|
|
mkvmerge -- utility for splicing together matroska files
|
|
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
|
|
\version \$Id: r_srt.h,v 1.6 2003/03/06 23:39:40 mosu Exp $
|
|
\brief class definition for the Subripper subtitle reader
|
|
\author Moritz Bunkus <moritz @ bunkus.org>
|
|
*/
|
|
|
|
#ifndef __R_SRT_H
|
|
#define __R_SRT_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "common.h"
|
|
#include "pr_generic.h"
|
|
|
|
#include "p_textsubs.h"
|
|
|
|
class srt_reader_c: public generic_reader_c {
|
|
private:
|
|
char chunk[2048];
|
|
FILE *file;
|
|
textsubs_packetizer_c *textsubs_packetizer;
|
|
int act_wchar;
|
|
|
|
public:
|
|
srt_reader_c(track_info_t *nti) throw (error_c);
|
|
virtual ~srt_reader_c();
|
|
|
|
virtual int read();
|
|
virtual packet_t *get_packet();
|
|
|
|
virtual int display_priority();
|
|
virtual void display_progress();
|
|
|
|
static int probe_file(FILE *file, u_int64_t size);
|
|
};
|
|
|
|
#endif // __R_SRT_H
|