Skip to content

Commit

Permalink
Remove superfluous debugging print statements in ALAC encoder.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpruett committed Mar 3, 2013
1 parent a3274d0 commit c0f8de4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2013-03-03 Michael Pruett <michael@68k.org>

* libaudiofile/alac/ALACEncoder.cpp:
Remove superfluous debugging print statements in ALAC encoder.

2013-02-27 Michael Pruett <michael@68k.org>

Update address for Free Software Foundation.
Expand Down
4 changes: 0 additions & 4 deletions libaudiofile/alac/ALACEncoder.cpp
Expand Up @@ -523,7 +523,6 @@ int32_t ALACEncoder::EncodeStereo( BitBuffer * bitstream, void * inputBuffer, ui
{
*bitstream = startBits; // reset bitstream state
doEscape = true;
printf( "compressed frame too big: %u vs. %u \n", minBits, escapeBits );
}
}

Expand Down Expand Up @@ -700,7 +699,6 @@ int32_t ALACEncoder::EncodeStereoFast( BitBuffer * bitstream, void * inputBuffer
if ( minBits >= escapeBits )
{
doEscape = true;
printf( "compressed frame too big: %u vs. %u\n", minBits, escapeBits );
}

}
Expand Down Expand Up @@ -965,7 +963,6 @@ int32_t ALACEncoder::EncodeMono( BitBuffer * bitstream, void * inputBuffer, uint
{
*bitstream = startBits; // reset bitstream state
doEscape = true;
printf( "compressed frame too big: %u vs. %u\n", minBits, escapeBits );
}
}

Expand Down Expand Up @@ -1114,7 +1111,6 @@ int32_t ALACEncoder::Encode(AudioFormatDescription theInputFormat, AudioFormatDe
break;

default:
printf( "That ain't right! (%u)\n", tag );
status = kALAC_ParamError;
goto Exit;
}
Expand Down

0 comments on commit c0f8de4

Please sign in to comment.