[Scummvm-cvs-logs] SF.net SVN: scummvm: [22572] tools/trunk/compress.c

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Tue May 23 01:46:04 CEST 2006


Revision: 22572
Author:   eriktorbjorn
Date:     2006-05-23 01:45:21 -0700 (Tue, 23 May 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=22572&view=rev

Log Message:
-----------
Use C-style comments instead of C++-style, even though I've heard that the
latter is allowed in the latest C standard.

Modified Paths:
--------------
    tools/trunk/compress.c
Modified: tools/trunk/compress.c
===================================================================
--- tools/trunk/compress.c	2006-05-22 10:15:47 UTC (rev 22571)
+++ tools/trunk/compress.c	2006-05-23 08:45:21 UTC (rev 22572)
@@ -77,9 +77,10 @@
 		return 22050;
 	} else {
 		int sr = 1000000L / (256L - vocSR);
-		// inexact sampling rates occur e.g. in the kitchen in Monkey Island,
-		// very easy to reach right from the start of the game.
-		//warning("inexact sample rate used: %i (0x%x)", sr, vocSR);
+		/* inexact sampling rates occur e.g. in the kitchen in Monkey
+		 * Island, very easy to reach right from the start of the game.
+		 * warning("inexact sample rate used: %i (0x%x)", sr, vocSR);
+		 */
 		return sr;
 	}
 }
@@ -224,7 +225,7 @@
 	}
 	fclose(f);
 
-	//TODO: setRawAudioType(false, false, 8);
+	/* TODO: setRawAudioType(false, false, 8); */
 
 	/* Convert the WAV temp file to OGG/MP3 */
 	encodeAudio(outName, false, -1, tempEncoded, compMode);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list