2003-03-04 09:27:05 +00:00
|
|
|
|
2003-02-16 00:05:07 +00:00
|
|
|
/*
|
|
|
|
ogmmerge -- utility for splicing together ogg bitstreams
|
|
|
|
from component media subtypes
|
|
|
|
|
|
|
|
r_vobsub.h
|
|
|
|
class definitions for the VobSub subtitle reader
|
|
|
|
|
|
|
|
Written by Moritz Bunkus <moritz@bunkus.org>
|
|
|
|
Based on Xiph.org's 'oggmerge' found in their CVS repository
|
|
|
|
See http://www.xiph.org
|
|
|
|
|
|
|
|
Distributed under the GPL
|
|
|
|
see the file COPYING for details
|
|
|
|
or visit http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*/
|
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
#ifndef __R_VOBSUB_H
|
|
|
|
#define __R_VOBSUB_H
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-06-20 19:29:26 +00:00
|
|
|
#include "os.h"
|
|
|
|
|
2003-02-16 00:05:07 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ogg/ogg.h>
|
|
|
|
|
|
|
|
#include "ogmmerge.h"
|
|
|
|
|
|
|
|
#include "p_vobsub.h"
|
|
|
|
|
|
|
|
class vobsub_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];
|
2003-05-23 06:34:58 +00:00
|
|
|
mm_io_c *mm_io, *subfile;
|
2003-05-02 20:11:34 +00:00
|
|
|
vobsub_packetizer_c *vobsub_packetizer, **all_packetizers;
|
|
|
|
int num_packetizers, act_wchar;
|
|
|
|
char **comments;
|
2003-05-20 06:30:25 +00:00
|
|
|
|
2003-02-27 09:52:37 +00:00
|
|
|
public:
|
2003-03-05 13:51:20 +00:00
|
|
|
vobsub_reader_c(char *fname, track_info_t *nti) throw (error_c);
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual ~vobsub_reader_c();
|
|
|
|
|
2003-05-02 20:11:34 +00:00
|
|
|
virtual int read();
|
|
|
|
virtual int serial_in_use(int);
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual ogmmerge_page_t *get_page();
|
|
|
|
virtual ogmmerge_page_t *get_header_page(int header_type =
|
|
|
|
PACKET_TYPE_HEADER);
|
2003-05-20 06:30:25 +00:00
|
|
|
|
2003-05-02 20:11:34 +00:00
|
|
|
virtual void reset();
|
|
|
|
virtual int display_priority();
|
|
|
|
virtual void display_progress();
|
2003-05-02 21:49:42 +00:00
|
|
|
virtual void set_headers();
|
2003-06-12 23:05:49 +00:00
|
|
|
virtual void identify();
|
2003-02-26 19:20:26 +00:00
|
|
|
|
2003-05-23 06:34:58 +00:00
|
|
|
static int probe_file(mm_io_c *mm_io, int64_t size);
|
2003-02-27 09:52:37 +00:00
|
|
|
|
|
|
|
private:
|
2003-05-02 20:11:34 +00:00
|
|
|
virtual void add_vobsub_packetizer(int width, int height,
|
|
|
|
char *palette, int langidx,
|
|
|
|
char *id, int index);
|
2003-02-16 00:05:07 +00:00
|
|
|
};
|
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
#endif // __R_VOBSUB_H
|