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
2015-08-04x86inc: Drop SECTION_TEXT macroHenrik Gramner
The .text section is already 16-byte aligned by default on all supported platforms so `SECTION_TEXT` isn't any different from `SECTION .text`.
2014-08-23avutil/pixelutils: faster pixelutils_sad_16x16Clément Bœsch
501 to 439 decicycles. See 45c7f3997ea11c3d1007b2126b1c0049a8c27105.
2014-08-23avutil/pixelutils: faster pixelutils_sad_[au]_16x16Clément Bœsch
~560 → ~500 decicycles This is following the comments from Michael in https://ffmpeg.org/pipermail/ffmpeg-devel/2014-August/160599.html Using 2 registers for accumulator didn't help. On the other hand, some re-ordering between the movs and psadbw allowed going ~538 to ~500.
2014-08-05avutil: add pixelutils APIClément Bœsch