2009年4月2日 星期四

Open Source DVD burning software --- InfraRecorder




zlib 在 Visual Studio 2005 下编译失败的解决办法(转)

最近需要读写 png 文件,按照以前的办法试验,却发现无法编译zlib 1.2.3。出错信息为:

inffas32.asm(594) : error A2070: invalid instruction operands
inffas32.asm(596) : error A2070: invalid instruction operands
inffas32.asm(610) : error A2070: invalid instruction operands
inffas32.asm(667) : error A2070: invalid instruction operands

上网一查,发现别人也遇到相同的问题:http://svn.haxx.se/dev/archive-2005-11/0942.shtml。原因在于

It (Microsoft Macro Assembler 8.0, included with Visual C++ 2005 Express ) refuses to assemble a MOVD instruction with a memory operand with an implied size, and requires that "dword ptr" prefix the memory operand.

微软说这是by design,不是bug:

http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx?feedbackid=6306f7dc-2cc2-4591-bd60-5d802178fdfa

解决办法是把inffas32.asm中的4处出错的类似

movd mm4, [esp+0]

的汇编代码,添加dword ptr修饰符,改为

movd mm4,dword ptr [esp+0]

这样就能顺利编译、通过测试了。

当然,其它的error A2070: invalid instruction operands错误也做同样处理。



InfraRecorder 只是個Shell

實際上它會call cdrecord 去做事


要燒錄DVD

往ATAPI 及 MMC 去 survey

http://www.ata-atapi.com/

http://www.lvr.com/mass_storage.htm


在 USB Mass Storage Spec 中有說,

光碟機 bInterfaceSubClass 通常為02 使用 SFF-8020i, MMC-2 Commands

Flash 隨身碟 bInterfaceSubClass 通常為 06 SCSI transparent command

bInterfaceProtocol 50h 為 bulk-only transport, BOT

bClass 08 Mass Storage Class


SCSI Primary Commands ( SPC-2 -3 -4 )



WINCE

The sample ATAPI driver is in the %_WINCEROOT%\Public\Common\OAK\Drivers\Block\ATAPI directory


沒有留言: