Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

info Class Reference

#include <WavPause.h>

List of all members.

Public Methods

 info ()
void dump () const

Public Attributes

int in_file_format
int version
int sample_format
int sample_width
int channel_count
int frame_size
double sample_rate
AFframecount total_frames


Constructor & Destructor Documentation

info::info   [inline]
 

Definition at line 51 of file WavPause.h.

00052     : in_file_format (AF_FILE_WAVE),       // 4
00053       version (0),                 // 0
00054       sample_format (AF_SAMPFMT_TWOSCOMP), // 401 - linear two's complement
00055       sample_width (16),           // 16 bits
00056       channel_count (2),               // 2 - stereo
00057       frame_size (4),                  // 4 bytes
00058       sample_rate (44100.0)        // 44100.0 
00059 { 
00060     /* no-op */ 
00061 }


Member Function Documentation

void info::dump   const
 

Definition at line 36 of file WavPause.cpp.

References channel_count, frame_size, in_file_format, sample_format, sample_rate, sample_width, total_frames, and version.

Referenced by WavPause::read_input_file.

00037 {
00038     trace("info::dump");
00039 
00040     DL((APP,"in_file_format = %d\n", in_file_format));
00041     DL((APP,"version        = %d\n", version));
00042     DL((APP,"sample_format  = %d\n", sample_format));
00043     DL((APP,"sample_width   = %d\n", sample_width));
00044     DL((APP,"channel_count  = %d\n", channel_count));
00045     DL((APP,"frame_size     = %d\n", frame_size));
00046     DL((APP,"sample_rate    = %f\n", sample_rate));
00047     DL((APP,"total_frames   = %d\n", total_frames));
00048 }


Member Data Documentation

int info::channel_count
 

Definition at line 43 of file WavPause.h.

Referenced by dump, WavPause::processServer, and WavPause::read_input_file.

int info::frame_size
 

Definition at line 44 of file WavPause.h.

Referenced by dump, WavPause::processServer, and WavPause::read_input_file.

int info::in_file_format
 

Definition at line 39 of file WavPause.h.

Referenced by dump, WavPause::processServer, and WavPause::read_input_file.

int info::sample_format
 

Definition at line 41 of file WavPause.h.

Referenced by dump, WavPause::processServer, and WavPause::read_input_file.

double info::sample_rate
 

Definition at line 45 of file WavPause.h.

Referenced by dump, WavPause::processServer, and WavPause::read_input_file.

int info::sample_width
 

Definition at line 42 of file WavPause.h.

Referenced by dump, WavPause::processServer, and WavPause::read_input_file.

AFframecount info::total_frames
 

Definition at line 46 of file WavPause.h.

Referenced by dump, WavPause::processServer, and WavPause::read_input_file.

int info::version
 

Definition at line 40 of file WavPause.h.

Referenced by dump, and WavPause::read_input_file.


The documentation for this class was generated from the following files:
Generated on Tue Feb 11 23:05:32 2003 for gwavmerger by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002