libjpeg asm possible bug?

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
Heimdall
Posts: 245
Joined: Thu Nov 10, 2005 1:29 am
Location: Netherlands
Contact:

libjpeg asm possible bug?

Post by Heimdall »

Did someone forgot to add the commas, or the original code was correct?

Code: Select all

Index: sceJpeg.S
===================================================================
--- sceJpeg.S	(revision 2395)
+++ sceJpeg.S	(working copy)
@@ -9,38 +9,38 @@
 	IMPORT_FUNC	"sceJpeg",0x0425B986,sceJpeg_0425B986
 #endif
 #ifdef F_sceJpeg_0002
-	IMPORT_FUNC	"sceJpeg",0x04B5AE02 	sceJpegMJpegCsc
+	IMPORT_FUNC	"sceJpeg",0x04B5AE02,sceJpegMJpegCsc
 #endif
 #ifdef F_sceJpeg_0003
-	IMPORT_FUNC	"sceJpeg",0x04B93CEF 	sceJpegDecodeMJpeg
+	IMPORT_FUNC	"sceJpeg",0x04B93CEF,sceJpegDecodeMJpeg
 #endif
 #ifdef F_sceJpeg_0004
-	IMPORT_FUNC	"sceJpeg",0x227662D7 	sceJpeg_227662D7
+	IMPORT_FUNC	"sceJpeg",0x227662D7,sceJpeg_227662D7
 #endif
 #ifdef F_sceJpeg_0005
-	IMPORT_FUNC	"sceJpeg",0x48B602B7 	sceJpegDeleteMJpeg
+	IMPORT_FUNC	"sceJpeg",0x48B602B7,sceJpegDeleteMJpeg
 #endif
 #ifdef F_sceJpeg_0006
-	IMPORT_FUNC	"sceJpeg",0x64B6F978 	sceJpeg_64B6F978
+	IMPORT_FUNC	"sceJpeg",0x64B6F978,sceJpeg_64B6F978
 #endif
 #ifdef F_sceJpeg_0007
-	IMPORT_FUNC	"sceJpeg",0x67F0ED84 	sceJpeg_67F0ED84
+	IMPORT_FUNC	"sceJpeg",0x67F0ED84,sceJpeg_67F0ED84
 #endif
 #ifdef F_sceJpeg_0008
-	IMPORT_FUNC	"sceJpeg",0x7D2F3D7F 	sceJpegFinishMJpeg
+	IMPORT_FUNC	"sceJpeg",0x7D2F3D7F,sceJpegFinishMJpeg
 #endif
 #ifdef F_sceJpeg_0009
-	IMPORT_FUNC	"sceJpeg",0x8F2BB012 	sceJpegGetOutputInfo
+	IMPORT_FUNC	"sceJpeg",0x8F2BB012,sceJpegGetOutputInfo
 #endif
 #ifdef F_sceJpeg_0010
-	IMPORT_FUNC	"sceJpeg",0x91EED83C 	sceJpegDecodeMJpegYCbCr
+	IMPORT_FUNC	"sceJpeg",0x91EED83C,sceJpegDecodeMJpegYCbCr
 #endif
 #ifdef F_sceJpeg_0011
-	IMPORT_FUNC	"sceJpeg",0x9B36444C 	sceJpeg_9B36444C
+	IMPORT_FUNC	"sceJpeg",0x9B36444C,sceJpeg_9B36444C
 #endif
 #ifdef F_sceJpeg_0012
-	IMPORT_FUNC	"sceJpeg",0x9D47469C 	sceJpegCreateMJpeg
+	IMPORT_FUNC	"sceJpeg",0x9D47469C,sceJpegCreateMJpeg
 #endif
 #ifdef F_sceJpeg_0013
-	IMPORT_FUNC	"sceJpeg",0xAC9E70E6 	sceJpegInitMJpeg
+	IMPORT_FUNC	"sceJpeg",0xAC9E70E6,sceJpegInitMJpeg
 #endif
Insert_witty_name
Posts: 376
Joined: Wed May 10, 2006 11:31 pm

Post by Insert_witty_name »

I've made the changes, but there seems to be a problem with commiting to subversion at the moment.

I'll submit it as soon as the problem is resolved.

Thanks.
Insert_witty_name
Posts: 376
Joined: Wed May 10, 2006 11:31 pm

Post by Insert_witty_name »

Commited in revision 2397, thanks.
Post Reply