| OLD | NEW |
| 1 URL: http://git.videolan.org/?p=x264.git | 1 URL: http://git.videolan.org/?p=x264.git |
| 2 Version: a95584945dd9ce3acc66c6cd8f6796bc4404d40d | 2 Version: a95584945dd9ce3acc66c6cd8f6796bc4404d40d |
| 3 License: ISC | 3 License: ISC |
| 4 License File: LICENSE | 4 License File: LICENSE |
| 5 | 5 |
| 6 Description: | 6 Description: |
| 7 x264/libav's framework for x86 assembly. Contains a variety of macros and | 7 x264/libav's framework for x86 assembly. Contains a variety of macros and |
| 8 defines that help automatically allow assembly to work cross-platform. | 8 defines that help automatically allow assembly to work cross-platform. |
| 9 | 9 |
| 10 Local Modifications: | 10 Local Modifications: |
| 11 Get configuration from vpx_config.asm. | 11 Get configuration from vpx_config.asm. |
| 12 Prefix functions with vpx by default. | 12 Prefix functions with vpx by default. |
| 13 Manage name mangling (prefixing with '_') manually because 'PREFIX' does not | 13 Manage name mangling (prefixing with '_') manually because 'PREFIX' does not |
| 14 exist in libvpx. | 14 exist in libvpx. |
| 15 Expand PIC default to macho64 and respect CONFIG_PIC from libvpx | 15 Expand PIC default to macho64 and respect CONFIG_PIC from libvpx |
| 16 Catch all elf formats for 'hidden' status and SECTION notes. | 16 Catch all elf formats for 'hidden' status and SECTION notes. |
| 17 Avoid 'amdnop' when building with nasm. | 17 Avoid 'amdnop' when building with nasm. |
| 18 Set 'private_extern' visibility for macho targets. | 18 Set 'private_extern' visibility for macho targets. |
| 19 Copy PIC 'GLOBAL' macros from x86_abi_support.asm | 19 Copy PIC 'GLOBAL' macros from x86_abi_support.asm |
| 20 Use .text instead of .rodata on macho to avoid broken tables in PIC mode. | 20 Use .text instead of .rodata on macho to avoid broken tables in PIC mode. |
| 21 Use .text with no alignment for aout | 21 Use .text with no alignment for aout |
| 22 Only use 'hidden' visibility with Chromium | 22 Only use 'hidden' visibility with Chromium |
| 23 Move '%use smartalign' for nasm out of 'INIT_CPUFLAGS' and before |
| 24 'ALIGNMODE'. |
| OLD | NEW |