mkvtoolnix/r_ac3.h

53 lines
1.1 KiB
C
Raw Normal View History

2003-02-16 00:05:07 +00:00
/*
2003-02-23 22:51:49 +00:00
mkvmerge -- utility for splicing together matroska files
from component media subtypes
2003-02-16 00:05:07 +00:00
2003-02-23 22:51:49 +00:00
r_avi.h
2003-02-16 00:05:07 +00:00
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-02-23 22:51:49 +00:00
/*!
\file r_avi.h
\version \$Id: r_ac3.h,v 1.9 2003/05/02 21:49:42 mosu Exp $
2003-02-23 22:51:49 +00:00
\brief class definitions for the AVI demultiplexer module
\author Moritz Bunkus <moritz @ bunkus.org>
*/
2003-02-16 00:05:07 +00:00
#ifndef __R_AC3_H
#define __R_AC3_H
#include <stdio.h>
2003-02-23 22:51:49 +00:00
#include "pr_generic.h"
#include "common.h"
#include "error.h"
2003-02-16 00:05:07 +00:00
#include "p_ac3.h"
#include "ac3_common.h"
class ac3_reader_c: public generic_reader_c {
2003-02-27 09:52:37 +00:00
private:
2003-05-02 20:11:34 +00:00
unsigned char *chunk;
FILE *file;
class ac3_packetizer_c *ac3packetizer;
2003-05-02 20:11:34 +00:00
int64_t bytes_processed, size;
2003-02-16 00:05:07 +00:00
2003-02-27 09:52:37 +00:00
public:
ac3_reader_c(track_info_t *nti) throw (error_c);
virtual ~ac3_reader_c();
2003-02-16 00:05:07 +00:00
2003-05-02 20:11:34 +00:00
virtual int read();
virtual packet_t *get_packet();
2003-05-02 20:11:34 +00:00
virtual int display_priority();
virtual void display_progress();
virtual void set_headers();
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-27 09:52:37 +00:00
#endif // __R_AC3_H