[Scummvm-cvs-logs] SF.net SVN: scummvm:[46376] tools/branches/gsoc2009-gui/compress.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Mon Dec 14 01:14:23 CET 2009


Revision: 46376
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46376&view=rev
Author:   fingolfin
Date:     2009-12-14 00:14:23 +0000 (Mon, 14 Dec 2009)

Log Message:
-----------
cleanup

Modified Paths:
--------------
    tools/branches/gsoc2009-gui/compress.cpp

Modified: tools/branches/gsoc2009-gui/compress.cpp
===================================================================
--- tools/branches/gsoc2009-gui/compress.cpp	2009-12-14 00:12:26 UTC (rev 46375)
+++ tools/branches/gsoc2009-gui/compress.cpp	2009-12-14 00:14:23 UTC (rev 46376)
@@ -24,34 +24,34 @@
 
 #include <sstream>
 
-typedef struct  {
+struct lameparams {
 	uint32 minBitr;
 	uint32 maxBitr;
 	bool abr;
 	uint32 algqual;
 	uint32 vbrqual;
 	bool silent;
-} lameparams;
+};
 
-typedef struct {
+struct oggencparams {
 	int nominalBitr;
 	int minBitr;
 	int maxBitr;
 	float quality;
 	bool silent;
-} oggencparams;
+};
 
-typedef struct {
+struct flaccparams {
 	int compressionLevel;
 	int blocksize;
 	bool verify;
 	bool silent;
-} flaccparams;
+};
 
-typedef struct {
+struct rawtype {
 	bool isLittleEndian, isStereo;
 	uint8 bitsPerSample;
-} rawtype;
+};
 
 lameparams encparms = { minBitrDef, maxBitrDef, false, algqualDef, vbrqualDef, 0 };
 oggencparams oggparms = { -1, -1, -1, (float)oggqualDef, 0 };


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