mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
61 lines
1.5 KiB
C++
61 lines
1.5 KiB
C++
/*
|
|
ogmmerge -- utility for splicing together ogg bitstreams
|
|
from component media subtypes
|
|
|
|
r_wav.h
|
|
class definitions for the WAVE demultiplexer module
|
|
|
|
Written by Moritz Bunkus <moritz@bunkus.org>
|
|
Based on Xiph.org's 'oggmerge' found in their CVS repository
|
|
See http://www.xiph.org
|
|
|
|
Distributed under the GPL
|
|
see the file COPYING for details
|
|
or visit http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
#ifndef __R_WAV_H__
|
|
#define __R_WAV_H__
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ogg/ogg.h>
|
|
|
|
extern "C" {
|
|
#include <avilib.h>
|
|
}
|
|
|
|
#include "ogmmerge.h"
|
|
#include "queue.h"
|
|
|
|
#include "p_pcm.h"
|
|
|
|
class wav_reader_c: public generic_reader_c {
|
|
private:
|
|
unsigned char *chunk;
|
|
FILE *file;
|
|
class pcm_packetizer_c *pcmpacketizer;
|
|
int bps;
|
|
struct wave_header wheader;
|
|
u_int64_t bytes_processed;
|
|
|
|
public:
|
|
wav_reader_c(char *fname, audio_sync_t *nasync, range_t *nrange,
|
|
char **ncomments) throw (error_c);
|
|
virtual ~wav_reader_c();
|
|
|
|
virtual int read();
|
|
virtual int serial_in_use(int);
|
|
virtual ogmmerge_page_t *get_page();
|
|
virtual ogmmerge_page_t *get_header_page(int header_type =
|
|
PACKET_TYPE_HEADER);
|
|
|
|
virtual void reset();
|
|
virtual int display_priority();
|
|
virtual void display_progress();
|
|
|
|
static int probe_file(FILE *file, u_int64_t size);
|
|
};
|
|
|
|
#endif /* __R_WAV_H__*/
|