~ubuntu-branches/ubuntu/intrepid/muse/intrepid

« back to all changes in this revision

Viewing changes to sf/pcm.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-gyxa3yivcs3zh5fa
Tags: 0.5.2-1.2
* NMU.
* widgets/Makefile.in, widgets/Makefile.am: Remove broken rules to
  build files that aren't used anyway. Closes: #143985
* debian/control: More tiny formatting tweaks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
//   SndFileFormatWavePCM1::read
76
76
//---------------------------------------------------------
77
77
 
78
 
size_t SndFileFormatWavePCM1::read(float** pp, unsigned len)
 
78
size_t SndFileFormatWavePCM1::read(float** pp, size_t len)
79
79
      { 
80
80
      unsigned total     = 0;
81
81
        int index          = 0;
102
102
//    read len frames
103
103
//---------------------------------------------------------
104
104
 
105
 
size_t SndFileFormatWavePCM2::read(float** pp, unsigned len)
 
105
size_t SndFileFormatWavePCM2::read(float** pp, size_t len)
106
106
      { 
107
107
      unsigned total     = 0;
108
108
        int index          = 0;
129
129
//    write len frames
130
130
//---------------------------------------------------------
131
131
 
132
 
size_t SndFileFormatWavePCM2::write(float**ptr, unsigned len)
 
132
size_t SndFileFormatWavePCM2::write(float**ptr, size_t len)
133
133
      { 
134
134
      unsigned total        = 0;
135
135
        int index             = 0;
150
150
        return total;
151
151
      }
152
152
 
153
 
size_t SndFileFormatWavePCM3::read(float**, unsigned)
 
153
size_t SndFileFormatWavePCM3::read(float**, size_t)
154
154
      { 
155
155
      unsigned total = 0;
156
156
      printf("not implemented: PCM3 read\n");
182
182
        return total;
183
183
      }
184
184
 
185
 
size_t SndFileFormatWavePCM4::read(float**, unsigned)
 
185
size_t SndFileFormatWavePCM4::read(float**, size_t)
186
186
      { 
187
187
      unsigned total = 0;
188
188
      printf("not implemented: PCM4 read\n");
214
214
        return total;
215
215
      }
216
216
 
217
 
size_t SndFileFormatWaveFloat::read(float**, unsigned)
 
217
size_t SndFileFormatWaveFloat::read(float**, size_t)
218
218
      { 
219
219
      unsigned total = 0;
220
220
#if 0
245
245
        return total;
246
246
      }
247
247
 
248
 
size_t SndFileFormatWavePCM1::write(float**, unsigned)
 
248
size_t SndFileFormatWavePCM1::write(float**, size_t)
249
249
      { 
250
250
      unsigned total = 0;
251
251
#if  0
276
276
        return total;
277
277
      }
278
278
 
279
 
size_t SndFileFormatWavePCM3::write(float**, unsigned)
 
279
size_t SndFileFormatWavePCM3::write(float**, size_t)
280
280
      { 
281
281
      unsigned total = 0;
282
282
#if 0
307
307
        return total;
308
308
      }
309
309
 
310
 
size_t SndFileFormatWavePCM4::write(float**, unsigned)
 
310
size_t SndFileFormatWavePCM4::write(float**, size_t)
311
311
      { 
312
312
      unsigned total = 0;
313
313
#if 0
338
338
        return total;
339
339
      }
340
340
 
341
 
size_t SndFileFormatWaveFloat::write(float**, unsigned)
 
341
size_t SndFileFormatWaveFloat::write(float**, size_t)
342
342
      { 
343
343
      unsigned total = 0;
344
344
#if 0