#include <WavPause.h>
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 |
|
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 } |
|
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 } |
|
Definition at line 43 of file WavPause.h. Referenced by dump, WavPause::processServer, and WavPause::read_input_file. |
|
Definition at line 44 of file WavPause.h. Referenced by dump, WavPause::processServer, and WavPause::read_input_file. |
|
Definition at line 39 of file WavPause.h. Referenced by dump, WavPause::processServer, and WavPause::read_input_file. |
|
Definition at line 41 of file WavPause.h. Referenced by dump, WavPause::processServer, and WavPause::read_input_file. |
|
Definition at line 45 of file WavPause.h. Referenced by dump, WavPause::processServer, and WavPause::read_input_file. |
|
Definition at line 42 of file WavPause.h. Referenced by dump, WavPause::processServer, and WavPause::read_input_file. |
|
Definition at line 46 of file WavPause.h. Referenced by dump, WavPause::processServer, and WavPause::read_input_file. |
|
Definition at line 40 of file WavPause.h. Referenced by dump, and WavPause::read_input_file. |