~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to mpeglib/lib/util/audio/dspWrapper.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include "../../frame/pcmFrame.h"
19
19
#include "../../frame/floatFrame.h"
20
20
 
 
21
#include <iostream>
 
22
 
 
23
using namespace std;
21
24
 
22
25
DSPWrapper::DSPWrapper() {
23
26
  currentFormat=new PCMFrame(0);
97
100
    cout << "device not open"<<endl;
98
101
    exit(-1);
99
102
  }
 
103
  /*
 
104
    cout << "sampleSize:"<<sampleSize<<endl;
 
105
    cout << "freq:"<<freq<<endl;
 
106
    cout << "stereo:"<<stereo<<endl;
 
107
    cout << "lSigned:"<<lSigned<<endl;
 
108
    cout << "lBigEndian:"<<lBigEndian<<endl;
 
109
  */
100
110
  audioInit(sampleSize,freq,stereo,lSigned,lBigEndian);
101
111
  if (currentFormat->getSampleSize() != sampleSize) {
102
112
    cout << "FIXME: pcmFrame with sampleSize:"<<sampleSize<<endl;