1 /** 2 * @file Samples.cpp 3 * 4 * @author Matthijs Hollemans 5 */ 6 7 #include "debug.h" 8 #include "Samples.h" 9 10 //------------------------------------------------------------------------------ 11 12 BSamples::BSamples() 13 { 14 UNIMPLEMENTED 15 } 16 17 //------------------------------------------------------------------------------ 18 19 BSamples::~BSamples() 20 { 21 UNIMPLEMENTED 22 } 23 24 //------------------------------------------------------------------------------ 25 26 void BSamples::Start( 27 void* sampleData, int32 frames, int16 bytes_per_sample, 28 int16 channel_count, double pitch, int32 loopStart, int32 loopEnd, 29 double sampleVolume, double stereoPosition, int32 hook_arg, 30 sample_loop_hook pLoopContinueProc, sample_exit_hook pDoneProc) 31 { 32 UNIMPLEMENTED 33 } 34 35 //------------------------------------------------------------------------------ 36 37 bool BSamples::IsPaused(void) const 38 { 39 UNIMPLEMENTED 40 return false; 41 } 42 43 //------------------------------------------------------------------------------ 44 45 void BSamples::Pause(void) 46 { 47 UNIMPLEMENTED 48 } 49 50 //------------------------------------------------------------------------------ 51 52 void BSamples::Resume(void) 53 { 54 UNIMPLEMENTED 55 } 56 57 //------------------------------------------------------------------------------ 58 59 void BSamples::Stop(void) 60 { 61 UNIMPLEMENTED 62 } 63 64 //------------------------------------------------------------------------------ 65 66 bool BSamples::IsPlaying(void) const 67 { 68 UNIMPLEMENTED 69 return false; 70 } 71 72 //------------------------------------------------------------------------------ 73 74 void BSamples::SetVolume(double newVolume) 75 { 76 UNIMPLEMENTED 77 } 78 79 //------------------------------------------------------------------------------ 80 81 double BSamples::Volume(void) const 82 { 83 UNIMPLEMENTED 84 return 0; 85 } 86 87 //------------------------------------------------------------------------------ 88 89 void BSamples::SetSamplingRate(double newRate) 90 { 91 UNIMPLEMENTED 92 } 93 94 //------------------------------------------------------------------------------ 95 96 double BSamples::SamplingRate(void) const 97 { 98 UNIMPLEMENTED 99 return 0; 100 } 101 102 //------------------------------------------------------------------------------ 103 104 void BSamples::SetPlacement(double stereoPosition) 105 { 106 UNIMPLEMENTED 107 } 108 109 //------------------------------------------------------------------------------ 110 111 double BSamples::Placement(void) const 112 { 113 UNIMPLEMENTED 114 return 0; 115 } 116 117 //------------------------------------------------------------------------------ 118 119 void BSamples::EnableReverb(bool useReverb) 120 { 121 UNIMPLEMENTED 122 } 123 124 //------------------------------------------------------------------------------ 125 126 void BSamples::_ReservedSamples1() { } 127 void BSamples::_ReservedSamples2() { } 128 void BSamples::_ReservedSamples3() { } 129 130 //------------------------------------------------------------------------------ 131 132