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
2010-01-18Mark all intreadwrite functions av_always_inlineMåns Rullgård
Originally committed as revision 21278 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-29PPC: fix asm operand constraints in AV_RL64Måns Rullgård
The target register of first word loaded must be marked early-clobber. Originally committed as revision 19536 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-18PPC: check for x-form asm constraint supportMåns Rullgård
Originally committed as revision 18606 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-18PPC asm for AV_RL*()Måns Rullgård
PPC is normally big endian but has special little endian load/store instructions. Using these avoids a separate byteswap. This makes the vorbis decoder about 5% faster. Not much else uses little-endian read/write extensively. GCC generates horrible PPC code for the default AV_[RW]B64 (which uses a packed struct), so we override it with a plain pointer cast. Originally committed as revision 18602 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Split libavutil/timer.h per architectureMåns Rullgård
Originally committed as revision 18304 to svn://svn.ffmpeg.org/ffmpeg/trunk