Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » char[4] in int konvertieren

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: [ 1 ] > 2 <
010
30.01.2007, 12:13 Uhr
derphilipder



Kann mir jemand erklären, warum danach

C++:
        int num_samples = wf->data_length/wf->block_align;//Gesamtzahl der samples
    file.at(44);//Beginn des Datenblocks --> Leseposition setzen
    
    char* buffer = new char[wf->bits_per_sample/8];//maximal 16-bit/sample
    if(wf->channels == 1)//mono
    {
        left.resize(num_samples);
        for(int i=0; i<left.size() && !file.atEnd(); i++)
        {
            stream.readRawBytes(buffer, wf->bits_per_sample/8);
            if(wf->bits_per_sample == 16)
                left[i] = *((short*)buffer);
            if(wf->bits_per_sample == 8)
                left[i] = (short)*buffer;
        }
    
    }


alle Werte im vector left 0 sind?
--
Konfuzius says: "A man who goes to bed with an itchy asshole is a man who wakes up with stinky finger!"
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
011
30.01.2007, 14:43 Uhr
derphilipder



Hat sich erledigt, lag an etwas anderem...
--
Konfuzius says: "A man who goes to bed with an itchy asshole is a man who wakes up with stinky finger!"
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: [ 1 ] > 2 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: