2003-05-17 21:01:28 +00:00
|
|
|
/*
|
|
|
|
mkvmerge -- utility for splicing together matroska files
|
|
|
|
from component media subtypes
|
|
|
|
|
|
|
|
r_avi.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 r_avi.h
|
2003-06-15 14:03:28 +00:00
|
|
|
\version $Id$
|
2003-05-17 21:01:28 +00:00
|
|
|
\brief class definitions for the AVI demultiplexer module
|
2003-05-18 20:57:08 +00:00
|
|
|
\author Moritz Bunkus <moritz@bunkus.org>
|
2003-05-17 21:01:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __R_AAC_H
|
|
|
|
#define __R_AAC_H
|
|
|
|
|
2003-06-20 19:29:26 +00:00
|
|
|
#include "os.h"
|
|
|
|
|
2003-05-17 21:01:28 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2003-05-23 06:34:58 +00:00
|
|
|
#include "mm_io.h"
|
2003-05-17 21:01:28 +00:00
|
|
|
#include "pr_generic.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "error.h"
|
2003-05-23 06:34:58 +00:00
|
|
|
#include "p_aac.h"
|
2003-05-17 21:01:28 +00:00
|
|
|
#include "aac_common.h"
|
|
|
|
|
|
|
|
class aac_reader_c: public generic_reader_c {
|
|
|
|
private:
|
|
|
|
unsigned char *chunk;
|
2003-05-23 06:34:58 +00:00
|
|
|
mm_io_c *mm_io;
|
|
|
|
aac_packetizer_c *aacpacketizer;
|
2003-05-17 21:01:28 +00:00
|
|
|
int64_t bytes_processed, size;
|
2003-06-19 19:32:50 +00:00
|
|
|
bool emphasis_present;
|
2003-05-20 06:30:25 +00:00
|
|
|
|
2003-05-17 21:01:28 +00:00
|
|
|
public:
|
|
|
|
aac_reader_c(track_info_t *nti) throw (error_c);
|
|
|
|
virtual ~aac_reader_c();
|
|
|
|
|
|
|
|
virtual int read();
|
|
|
|
virtual packet_t *get_packet();
|
|
|
|
virtual int display_priority();
|
|
|
|
virtual void display_progress();
|
|
|
|
virtual void set_headers();
|
2003-06-12 23:05:49 +00:00
|
|
|
virtual void identify();
|
2003-05-17 21:01:28 +00:00
|
|
|
|
2003-05-23 06:34:58 +00:00
|
|
|
static int probe_file(mm_io_c *mm_io, int64_t size);
|
2003-06-19 19:32:50 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void guess_adts_version();
|
2003-05-17 21:01:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __R_AAC_H
|