-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 42 |
1 files changed, 26 insertions, 16 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index b80b378..e747a19 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp | |||
@@ -238,3 +238,4 @@ VMemo::VMemo( QWidget *parent, const char *_name ) | |||
238 | // if( vmCfg.readNumEntry("hideIcon",0) == 1) | 238 | // if( vmCfg.readNumEntry("hideIcon",0) == 1) |
239 | // hide(); | 239 | if (!usingIcon) |
240 | hide(); | ||
240 | recording = FALSE; | 241 | recording = FALSE; |
@@ -377,3 +378,3 @@ bool VMemo::startRecording() { | |||
377 | void VMemo::stopRecording() { | 378 | void VMemo::stopRecording() { |
378 | show(); | 379 | // show(); |
379 | odebug << "Stopped recording" << oendl; | 380 | odebug << "Stopped recording" << oendl; |
@@ -487,5 +488,6 @@ bool VMemo::record() { | |||
487 | length = 0; | 488 | length = 0; |
488 | int bytesWritten = 0; | 489 | int bytesWritten = 0; |
489 | int result = 0; | 490 | int result = 0; |
490 | int value = 0; | 491 | int value = 0; |
492 | |||
491 | QString msg; | 493 | QString msg; |
@@ -493,2 +495,3 @@ bool VMemo::record() { | |||
493 | odebug << msg << oendl; | 495 | odebug << msg << oendl; |
496 | |||
494 | Config config("Vmemo"); | 497 | Config config("Vmemo"); |
@@ -496,7 +499,10 @@ bool VMemo::record() { | |||
496 | int sRate = config.readNumEntry("SizeLimit", 30); | 499 | int sRate = config.readNumEntry("SizeLimit", 30); |
497 | if(sRate > 0) | 500 | odebug << "VMEMO rate" << sRate << oendl; |
498 | t_timer->start( sRate * 1000+1000, TRUE); | ||
499 | 501 | ||
500 | msg.sprintf("Recording format other"); | 502 | if(sRate > 0) { |
501 | odebug << msg << oendl; | 503 | t_timer->start( sRate * 1000+1000, TRUE); |
504 | } | ||
505 | |||
506 | msg.sprintf("Recording format other"); | ||
507 | odebug << msg << oendl; | ||
502 | 508 | ||
@@ -505,8 +511,10 @@ bool VMemo::record() { | |||
505 | 511 | ||
506 | int bufsize = config.readNumEntry("BufferSize",1024); | 512 | int bufsize = config.readNumEntry("BufferSize",1024); |
507 | unsigned short sound[bufsize]; //, monoBuffer[bufsize]; | 513 | unsigned short sound[bufsize]; //, monoBuffer[bufsize]; |
508 | char abuf[bufsize / 2]; | 514 | char abuf[bufsize / 2]; |
509 | short sbuf[bufsize]; | 515 | short sbuf[bufsize]; |
510 | 516 | odebug << "ready to record"<< oendl; | |
511 | if(useADPCM) { | 517 | if(useADPCM) { |
518 | odebug << "usr ADPCM" << oendl; | ||
519 | |||
512 | while(recording) { | 520 | while(recording) { |
@@ -531,4 +539,4 @@ bool VMemo::record() { | |||
531 | } | 539 | } |
532 | // printf("%d\r", length); | 540 | printf("%d\r", length); |
533 | // fflush(stdout); | 541 | fflush(stdout); |
534 | qApp->processEvents(); | 542 | qApp->processEvents(); |
@@ -536,2 +544,3 @@ bool VMemo::record() { | |||
536 | } else { | 544 | } else { |
545 | odebug << "use regular wav" << oendl; | ||
537 | while(recording) { | 546 | while(recording) { |
@@ -544,2 +553,3 @@ bool VMemo::record() { | |||
544 | return FALSE; | 553 | return FALSE; |
554 | } | ||
545 | 555 | ||
@@ -555,9 +565,9 @@ bool VMemo::record() { | |||
555 | } | 565 | } |
556 | // printf("%d\r", length); | 566 | // printf("%d\r", length); |
557 | // fflush(stdout); | 567 | // fflush(stdout); |
558 | qApp->processEvents(); | 568 | qApp->processEvents(); |
559 | } | 569 | } |
570 | // odebug << "result is " << result << oendl; | ||
560 | } | 571 | } |
561 | } | 572 | odebug << "file has length of " << length << " lasting " << (( length / speed) / channels) / 2 << " seconds" << oendl; |
562 | // odebug << "file has length of " << length << " lasting " << (( length / speed) / channels) / 2 ) << " seconds" << oendl; | ||
563 | 573 | ||