2003-02-24 13:12:27 +00:00
|
|
|
/*
|
|
|
|
mkvmerge -- utility for splicing together matroska files
|
|
|
|
from component media subtypes
|
|
|
|
|
|
|
|
p_pcm.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
|
2003-04-18 13:21:11 +00:00
|
|
|
\version \$Id: p_pcm.h,v 1.12 2003/04/18 13:21:11 mosu Exp $
|
2003-02-24 13:12:27 +00:00
|
|
|
\brief class definition for the PCM output module
|
|
|
|
\author Moritz Bunkus <moritz @ bunkus.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __P_PCM_H
|
|
|
|
#define __P_PCM_H
|
|
|
|
|
|
|
|
#include "common.h"
|
2003-04-18 10:28:14 +00:00
|
|
|
#include "pr_generic.h"
|
2003-02-24 13:12:27 +00:00
|
|
|
|
2003-04-18 10:28:14 +00:00
|
|
|
class pcm_packetizer_c: public generic_packetizer_c {
|
2003-02-27 09:52:37 +00:00
|
|
|
private:
|
2003-02-26 19:20:26 +00:00
|
|
|
int packetno;
|
2003-03-05 17:44:32 +00:00
|
|
|
int bps, channels, bits_per_sample;
|
2003-04-13 15:23:03 +00:00
|
|
|
int64_t bytes_output, remaining_sync;
|
2003-02-26 19:20:26 +00:00
|
|
|
unsigned long samples_per_sec;
|
2003-03-04 10:16:28 +00:00
|
|
|
unsigned char *tempbuf;
|
2003-03-05 17:44:32 +00:00
|
|
|
int tempbuf_size;
|
2003-02-26 19:20:26 +00:00
|
|
|
|
2003-02-27 09:52:37 +00:00
|
|
|
public:
|
2003-03-05 13:51:20 +00:00
|
|
|
pcm_packetizer_c(unsigned long nsamples_per_sec, int nchannels,
|
|
|
|
int nbits_per_sample, track_info_t *nti) throw (error_c);
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual ~pcm_packetizer_c();
|
2003-02-24 13:12:27 +00:00
|
|
|
|
2003-04-11 11:23:54 +00:00
|
|
|
virtual int process(unsigned char *buf, int size, int64_t timecode = -1,
|
2003-04-18 13:21:11 +00:00
|
|
|
int64_t length = -1, int64_t bref = -1,
|
|
|
|
int64_t fref = -1);
|
2003-02-26 19:20:26 +00:00
|
|
|
virtual void set_header();
|
2003-02-24 13:12:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const int pcm_interleave = 16;
|
|
|
|
|
2003-02-27 09:52:37 +00:00
|
|
|
#endif // __P_PCM_H
|