2003-02-16 00:05:07 +00:00
|
|
|
/*
|
2003-02-16 00:47:53 +00:00
|
|
|
mkvmerge -- utility for splicing together matroska files
|
2003-02-16 00:05:07 +00:00
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2003-02-16 12:17:11 +00:00
|
|
|
/*!
|
|
|
|
\file r_avi.h
|
2003-06-15 14:03:28 +00:00
|
|
|
\version $Id$
|
2003-02-16 12:17:11 +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-02-16 12:17:11 +00:00
|
|
|
*/
|
|
|
|
|
2003-02-16 17:04:39 +00:00
|
|
|
#ifndef __R_AVI_H
|
|
|
|
#define __R_AVI_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>
|
|
|
|
|
2003-06-15 08:40:43 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2003-02-16 00:05:07 +00:00
|
|
|
extern "C" {
|
|
|
|
#include <avilib.h>
|
|
|
|
}
|
|
|
|
|
2003-05-23 06:34:58 +00:00
|
|
|
#include "mm_io.h"
|
2003-02-16 17:04:39 +00:00
|
|
|
#include "pr_generic.h"
|
2003-02-16 11:44:19 +00:00
|
|
|
#include "common.h"
|
2003-02-16 12:17:11 +00:00
|
|
|
#include "error.h"
|
2003-02-16 17:04:39 +00:00
|
|
|
#include "p_video.h"
|
2003-02-16 00:05:07 +00:00
|
|
|
|
|
|
|
#define RAVI_UNKNOWN 0
|
|
|
|
#define RAVI_DIVX3 1
|
|
|
|
#define RAVI_MPEG4 2
|
|
|
|
|
|
|
|
typedef struct avi_demuxer_t {
|
2003-02-16 11:44:19 +00:00
|
|
|
generic_packetizer_c *packetizer;
|
2003-05-02 20:11:34 +00:00
|
|
|
int channels, bits_per_sample, samples_per_second;
|
|
|
|
int aid;
|
|
|
|
int eos;
|
|
|
|
int64_t bytes_processed;
|
2003-02-16 00:05:07 +00:00
|
|
|
} avi_demuxer_t;
|
|
|
|
|
|
|
|
class avi_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, *old_chunk;
|
|
|
|
avi_t *avi;
|
2003-02-26 19:20:26 +00:00
|
|
|
video_packetizer_c *vpacketizer;
|
2003-06-15 08:40:43 +00:00
|
|
|
vector<avi_demuxer_t *> ademuxers;
|
2003-05-02 20:11:34 +00:00
|
|
|
double fps;
|
|
|
|
int frames, max_frame_size, act_wchar, old_key, old_nread;
|
|
|
|
int video_done, maxframes, is_divx, rederive_keyframes;
|
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
|
|
|
avi_reader_c(track_info_t *nti) throw (error_c);
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual ~avi_reader_c();
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-05-02 20:11:34 +00:00
|
|
|
virtual int read();
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual packet_t *get_packet();
|
2003-05-02 20:11:34 +00:00
|
|
|
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-16 00:05:07 +00:00
|
|
|
|
2003-05-23 06:34:58 +00:00
|
|
|
static int probe_file(mm_io_c *mm_io, int64_t size);
|
2003-05-20 06:30:25 +00:00
|
|
|
|
2003-02-27 09:52:37 +00:00
|
|
|
private:
|
2003-06-15 08:40:43 +00:00
|
|
|
virtual void add_audio_demuxer(avi_t *avi, int aid);
|
2003-05-02 20:11:34 +00:00
|
|
|
virtual int is_keyframe(unsigned char *data, long size, int suggestion);
|
2003-02-16 00:05:07 +00:00
|
|
|
};
|
|
|
|
|
2003-02-16 17:04:39 +00:00
|
|
|
#endif // __R_AVI_H
|