File: cs_pvocheader.h.old

package info (click to toggle)
mixviews 1.20-10.1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 2,928 kB
  • ctags: 5,960
  • sloc: cpp: 32,879; ansic: 2,110; makefile: 445; sh: 17
file content (83 lines) | stat: -rw-r--r-- 3,105 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// cs_pvocheader.h

/******************************************************************************
 *
 *  MiXViews - an X window system based sound & data editor/processor
 *
 *  Copyright (c) 1993, 1994 Regents of the University of California
 *
 *  Author:     Douglas Scott
 *  Date:       December 13, 1994
 *
 *  Permission to use, copy and modify this software and its documentation
 *  for research and/or educational purposes and without fee is hereby granted,
 *  provided that the above copyright notice appear in all copies and that
 *  both that copyright notice and this permission notice appear in
 *  supporting documentation. The author reserves the right to distribute this
 *  software and its documentation.  The University of California and the author
 *  make no representations about the suitability of this software for any 
 *  purpose, and in no event shall University of California be liable for any
 *  damage, loss of data, or profits resulting from its use.
 *  It is provided "as is" without express or implied warranty.
 *
 ******************************************************************************/


// This class uses the header format for phase vocoder data generated by
// the pvanal routines in Csound.

#ifndef CSPVOCHEADER_H
#ifdef __GNUG__
#pragma interface
#endif
#define CSPVOCHEADER_H

#include "header.h"

class CS_PvocHeader : public FrameDataHeader {
	typedef FrameDataHeader Super;
public:
	CS_PvocHeader(int chans, double frate, int srate);
	virtual ~CS_PvocHeader() {}
protected:
	redefined int diskHeaderSize() { return sizeof(DiskHeader); }
	redefined int diskHeaderCommentSize() { return 4; }
	redefined boolean isMagic() { return magic() == PV_MAGIC; }
	redefined int checkHeader();
	redefined int readInfo(DataFile *);
	redefined int writeInfo(DataFile *);
	redefined const char* magicError();
private:
	friend Header* createPvocHeader(class PvocData *, DataFile *);
	enum Magic { PV_MAGIC = 517730 };
	enum FrameFormat {
		PVMAG = 1, PVPHASE, PVPOLAR, PVREAL, PVIMAG, PVRECT, PVPVOC,
		PVCQ = 32	// ORed with previous to indicate one frame per 8ve
	};
	enum FreqFormat { PVLIN = 1, PVEXP };
	enum DataFormat {
		PVSHORT = 2,		// 16 bit linear data
		PVINT32 = 4,			// 32 bit linear data
		PVFLOAT = (4+32),	// 32 bit float data
		PVDOUBLE = (8+32)	// 64 bit float data
	};
	// The structure of the CS_PVOC header on disk
	struct DiskHeader {
		INT32	magic;			// magic number to identify
		INT32	headBsize;		// byte offset from start to data
		INT32	dataBsize;		// number of bytes of data
		INT32	dataFormat;	    // (int) format specifier
		float	samplingRate;	// of original sample
		INT32	channels;		// (int) mono/stereo etc
		INT32 	frameSize;		// size of FFT frames (2^n)
		INT32	frameIncr;		// # new samples each frame
		INT32	frameBsize;		// bytes in each file frame
		INT32	frameFormat;	// (int) how words are org'd in frms
		float	minFreq;		// freq in Hz of lowest bin (exists)
		float	maxFreq;		// freq in Hz of highest (or next)
		INT32	freqFormat;		// (int) flag for log/lin frq
		char	info[4];		// extendable byte area
	};
};

#endif