mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
80 lines
1.5 KiB
C++
80 lines
1.5 KiB
C++
/*
|
|
mkvmerge -- utility for splicing together matroska files
|
|
from component media subtypes
|
|
|
|
r_real.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 RealMedia demultiplexer module
|
|
\author Moritz Bunkus <moritz@bunkus.org>
|
|
*/
|
|
|
|
#ifndef __R_REAL_H
|
|
#define __R_REAL_H
|
|
|
|
#include "os.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <vector>
|
|
|
|
#include "mm_io.h"
|
|
#include "pr_generic.h"
|
|
#include "common.h"
|
|
#include "error.h"
|
|
#include "p_video.h"
|
|
|
|
typedef struct {
|
|
generic_packetizer_c *packetizer;
|
|
int id;
|
|
|
|
uint32_t start_time, preroll;
|
|
|
|
int channels, bits_per_sample, samples_per_second;
|
|
|
|
int width, height;
|
|
float fps;
|
|
|
|
char fourcc[5], type;
|
|
|
|
unsigned char *private_data;
|
|
int private_size;
|
|
} real_demuxer_t;
|
|
|
|
class real_reader_c: public generic_reader_c {
|
|
private:
|
|
mm_io_c *io;
|
|
vector<real_demuxer_t *> demuxers;
|
|
int act_wchar;
|
|
int64_t file_size, last_timestamp;
|
|
|
|
public:
|
|
real_reader_c(track_info_t *nti) throw (error_c);
|
|
virtual ~real_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);
|
|
|
|
private:
|
|
virtual void parse_headers();
|
|
virtual void create_packetizers();
|
|
virtual real_demuxer_t *find_demuxer(int id);
|
|
};
|
|
|
|
#endif // __R_REAL_H
|