mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-12 13:14:38 +00:00
54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
|
/*
|
||
|
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
|
||
|
\version \$Id: p_pcm.h,v 1.1 2003/02/24 13:12:27 mosu Exp $
|
||
|
\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"
|
||
|
#include "queue.h"
|
||
|
|
||
|
class pcm_packetizer_c: public q_c {
|
||
|
private:
|
||
|
int packetno;
|
||
|
int bps;
|
||
|
u_int64_t bytes_output;
|
||
|
unsigned long samples_per_sec;
|
||
|
int channels;
|
||
|
int bits_per_sample;
|
||
|
char *tempbuf;
|
||
|
audio_sync_t async;
|
||
|
range_t range;
|
||
|
|
||
|
public:
|
||
|
pcm_packetizer_c(void *nprivate_data, int nprivate_size,
|
||
|
unsigned long nsamples_per_sec, int nchannels,
|
||
|
int nbits_per_sample, audio_sync_t *nasync,
|
||
|
range_t *nrange) throw (error_c);
|
||
|
virtual ~pcm_packetizer_c();
|
||
|
|
||
|
virtual int process(char *buf, int size, int last_frame);
|
||
|
virtual void set_header();
|
||
|
/* virtual void reset(); */
|
||
|
};
|
||
|
|
||
|
const int pcm_interleave = 16;
|
||
|
|
||
|
#endif
|