mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
55 lines
1.1 KiB
C++
55 lines
1.1 KiB
C++
/*
|
|
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
|
|
\version $Id$
|
|
\brief class definitions for the AVI demultiplexer module
|
|
\author Moritz Bunkus <moritz@bunkus.org>
|
|
*/
|
|
|
|
#ifndef __R_DTS_H
|
|
#define __R_DTS_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "mm_io.h"
|
|
#include "pr_generic.h"
|
|
#include "common.h"
|
|
#include "error.h"
|
|
#include "p_dts.h"
|
|
#include "dts_common.h"
|
|
|
|
class dts_reader_c: public generic_reader_c {
|
|
private:
|
|
unsigned char *chunk;
|
|
mm_io_c *mm_io;
|
|
class dts_packetizer_c *dtspacketizer;
|
|
int64_t bytes_processed, size;
|
|
|
|
public:
|
|
dts_reader_c(track_info_t *nti) throw (error_c);
|
|
virtual ~dts_reader_c();
|
|
|
|
virtual int read();
|
|
virtual packet_t *get_packet();
|
|
virtual int display_priority();
|
|
virtual void display_progress();
|
|
virtual void set_headers();
|
|
virtual void identify();
|
|
|
|
static int probe_file(mm_io_c *mm_io, int64_t size);
|
|
};
|
|
|
|
#endif // __R_DTS_H
|