Johann | 2497356 | 2016-02-17 17:37:24 -0800 | [diff] [blame] | 1 | URL: https://git.videolan.org/git/x264.git |
| 2 | Version: d23d18655249944c1ca894b451e2c82c7a584c62 |
Daniel Kang | 31fd84d | 2012-06-18 12:45:34 -0700 | [diff] [blame] | 3 | License: ISC |
| 4 | License File: LICENSE |
| 5 | |
| 6 | Description: |
| 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. |
| 9 | |
| 10 | Local Modifications: |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 11 | Get configuration from aom_config.asm. |
| 12 | Prefix functions with aom by default. |
Johann | 4de9641 | 2016-02-17 17:55:18 -0800 | [diff] [blame] | 13 | Manage name mangling (prefixing with '_') manually because 'PREFIX' does not |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 14 | exist in libaom. |
| 15 | Expand PIC default to macho64 and respect CONFIG_PIC from libaom |
Johann | 71ccd10 | 2016-02-17 18:08:13 -0800 | [diff] [blame] | 16 | Set 'private_extern' visibility for macho targets. |
Johann | 7e065cd | 2016-02-17 18:21:03 -0800 | [diff] [blame] | 17 | Copy PIC 'GLOBAL' macros from x86_abi_support.asm |
Johann | 9679be4 | 2016-02-17 18:25:09 -0800 | [diff] [blame] | 18 | Use .text instead of .rodata on macho to avoid broken tables in PIC mode. |
Johann | a97c83f | 2016-02-17 18:30:46 -0800 | [diff] [blame] | 19 | Use .text with no alignment for aout |
James Zern | a4b47b8 | 2016-02-17 18:32:57 -0800 | [diff] [blame] | 20 | Only use 'hidden' visibility with Chromium |