2003-03-05 13:51:20 +00:00
|
|
|
|
2003-02-16 00:05:07 +00:00
|
|
|
/*
|
2003-02-24 12:31:17 +00:00
|
|
|
mkvmerge -- utility for splicing together matroska files
|
2003-02-16 00:05:07 +00:00
|
|
|
from component media subtypes
|
|
|
|
|
|
|
|
r_wav.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-24 12:31:17 +00:00
|
|
|
/*!
|
|
|
|
\file
|
2003-04-13 15:23:03 +00:00
|
|
|
\version \$Id: r_wav.h,v 1.7 2003/04/13 15:23:03 mosu Exp $
|
2003-02-24 12:31:17 +00:00
|
|
|
\brief class definitions for the WAV reader module
|
|
|
|
\author Moritz Bunkus <moritz @ bunkus.org>
|
|
|
|
*/
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-24 12:31:17 +00:00
|
|
|
#ifndef __R_WAV_H
|
|
|
|
#define __R_WAV_H
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-24 12:31:17 +00:00
|
|
|
#include <stdio.h>
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-24 12:31:17 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "error.h"
|
2003-02-16 00:05:07 +00:00
|
|
|
#include "queue.h"
|
|
|
|
|
|
|
|
#include "p_pcm.h"
|
|
|
|
|
2003-02-24 12:31:17 +00:00
|
|
|
extern "C" {
|
|
|
|
#include "avilib.h"
|
|
|
|
}
|
|
|
|
|
2003-02-16 00:05:07 +00:00
|
|
|
class wav_reader_c: public generic_reader_c {
|
2003-02-27 09:52:37 +00:00
|
|
|
private:
|
2003-02-26 19:20:26 +00:00
|
|
|
unsigned char *chunk;
|
|
|
|
FILE *file;
|
|
|
|
class pcm_packetizer_c *pcmpacketizer;
|
|
|
|
int bps;
|
|
|
|
struct wave_header wheader;
|
2003-04-13 15:23:03 +00:00
|
|
|
int64_t bytes_processed;
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-27 09:52:37 +00:00
|
|
|
public:
|
2003-03-05 13:51:20 +00:00
|
|
|
wav_reader_c(track_info_t *nti) throw (error_c);
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual ~wav_reader_c();
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual int read();
|
|
|
|
virtual packet_t *get_packet();
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual int display_priority();
|
|
|
|
virtual void display_progress();
|
2003-02-16 00:05:07 +00:00
|
|
|
|
2003-04-13 15:23:03 +00:00
|
|
|
static int probe_file(FILE *file, int64_t size);
|
2003-02-16 00:05:07 +00:00
|
|
|
};
|
|
|
|
|
2003-02-24 12:31:17 +00:00
|
|
|
#endif // __R_WAV_H
|