Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-09Merge commit '780cd20b00a69e26bbfffbb8eec16fbe999ea793'Michael Niedermayer
* commit '780cd20b00a69e26bbfffbb8eec16fbe999ea793': aarch64: Use .data.rel.ro for const data with relocations Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-12-09aarch64: Use .data.rel.ro for const data with relocationsMartin Storsjö
This reverts commit c00365b46d464ce47716315c1801818d811bdb9a in addition to using a different section. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-11-16Merge commit 'c00365b46d464ce47716315c1801818d811bdb9a'Michael Niedermayer
* commit 'c00365b46d464ce47716315c1801818d811bdb9a': aarch64: Make the function pointer tables position independent Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-16aarch64: Make the function pointer tables position independentMartin Storsjö
This allows running the code on android, where 64 bit binaries with text relocations aren't allowed to be loaded. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-08-04Merge commit 'ac6b95dbc0b53b3ea461bd5e5e7f7f31d2983733'Michael Niedermayer
* commit 'ac6b95dbc0b53b3ea461bd5e5e7f7f31d2983733': aarch64: add ',' between assembler macro arguments where missing Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-04aarch64: add ',' between assembler macro arguments where missingJanne Grunau
llvm's integrated assembler does not accept spaces as macro argument delimiter when targeting darwin. Using a explicit delimiter is a good idea in principle since it makes case like 'macro 4 -2' vs 'macro 4 - 2' clear.
2014-05-13Merge commit '9aa4592076d4dbb29d1198b0e258f9f85c0c00b5'Michael Niedermayer
* commit '9aa4592076d4dbb29d1198b0e258f9f85c0c00b5': aarch64: assembler in clang-3.4 ignores the division by two Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-13aarch64: assembler in clang-3.4 ignores the division by twoJanne Grunau
Values are positive powers of two, so just replace it with right shift.
2014-04-23Merge commit '650c4300d94aa9398ff1dd4f454bf39eaa285f62'Michael Niedermayer
* commit '650c4300d94aa9398ff1dd4f454bf39eaa285f62': aarch64: NEON float FFT Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-04-22aarch64: NEON float FFTJanne Grunau
Approximately as fast as the ARM NEON version on Apple's A7.