Re: How to bypass assembler
suxen_drol <[email protected]> Wed, 09 Jun 2004 21:13:37 +1000
| Newsgroups | gmane.comp.video.xvid.user |
|---|---|
| Message-ID | <[email protected]> |
On Wed, 9 Jun 2004 11:58:18 +0530 "Mangesh" <[email protected]> wrote: > Hi All, > I'm using xvid version 1.0.0 on VC++ platform. > I want to skip all assembler files, which are used for optimisation. > Please suggest me necessary changes, so that I can skip the custom build > for different assembler files. I'm want to skip X86-asm. if you just want to *use* the codec without assembly optimization, just call XVID_GBL_INIT with .cpu_flags = XVID_CPU_FORCE; if you want to *compile* without NASM assembly files in visual c++ - remove/exclude all the .asm files from the project - modify xvid.c, and place a "#undef ARCH_IS_IA32" after the #include files. -- pete