From 7c4ee87ab334a8e245d8345b378400bf787a7d5a Mon Sep 17 00:00:00 2001 From: llornkcor Date: Fri, 15 Feb 2002 03:04:38 +0000 Subject: cleaned up comments --- diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index bba55a3..9c0025d 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp @@ -306,19 +306,19 @@ int VMemo::openWAV(const char *filename) WaveHeader wh; - wh.main_chunk = RIFF;// RIFF - wh.length=0; /* filelen */ - wh.chunk_type = WAVE;//WAVE - wh.sub_chunk = FMT;// fmt - wh.sc_len = 16;// format length = 16 - wh.format = PCM_CODE;// PCM - wh.modus = channels;// channels - wh.sample_fq = speed;//samplerate - wh.byte_p_sec = speed * channels * resolution/8;// av bytes per second - wh.byte_p_spl = channels * (resolution / 8); //block align - wh.bit_p_spl = resolution;//bits per sample 8, or 16 + wh.main_chunk = RIFF; + wh.length=0; + wh.chunk_type = WAVE; + wh.sub_chunk = FMT; + wh.sc_len = 16; + wh.format = PCM_CODE; + wh.modus = channels; + wh.sample_fq = speed; + wh.byte_p_sec = speed * channels * resolution/8; + wh.byte_p_spl = channels * (resolution / 8); + wh.bit_p_spl = resolution; wh.data_chunk = DATA; - wh.data_length= 0; // <--- + wh.data_length= 0; // qDebug("Write header channels %d, speed %d, b/s %d, blockalign %d, bitrate %d" // , wh.modus, wh.sample_fq, wh.byte_p_sec, wh.byte_p_spl, wh.bit_p_spl ); write (wav, &wh, sizeof(WaveHeader)); @@ -356,7 +356,7 @@ void VMemo::record(void) // qDebug("File length %d, samplecount %d", value, length); track.close(); - if( ioctl( dsp, SNDCTL_DSP_RESET,0) == -1)// ); //tell driver to stop for a while + if( ioctl( dsp, SNDCTL_DSP_RESET,0) == -1) perror("ioctl(\"SNDCTL_DSP_RESET\")"); ::close(dsp); -- cgit v0.9.0.2