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
2011-01-23get_bits: move tracing macros to end of fileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 611a6f59ce91947b25033bb8d0f9311b5c542b05)
2011-01-23Sanitise get_bits macros, part 2Mans Rullgard
These whitespace changes improve the readability of the get_bits macros. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit fb5c841d5f05ae54b699ba6ef28356a6563751eb)
2011-01-23Sanitise get_bits macros, part 1Mans Rullgard
Some of the macros in get_bits.h include a final semicolon, some do not. This removes these or adds do {} while(0) around the macros as appropriate and adds semicolons where needed in calling code. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit bf5f9b528b4117596afc57578a36e7b5728b15d3)
2011-01-23Remove "libmpeg2" bitstream readerMans Rullgard
Using the libmpeg2 reader causes errors in a multitude of places, including MPEG and H264 codecs. As the advantage of this reader is questionable, removing it seems the sensible course of action, especially considering the simplifications this allows elsewhere with the bit cache size increasing from 17 to 25 bits as minimum. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 938f72e19957e9ee3f4ae2bee2fb53ded359009f)
2010-07-11Add av_ prefix to bswap macrosMåns Rullgård
Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-11bswap: change ME to NE in macro namesMåns Rullgård
Other parts of FFmpeg use NE (native endian) rather than ME (machine). This makes it consistent. Originally committed as revision 24169 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-22get/show_bits() can read up to MIN_CACHE_BITS bitsMåns Rullgård
The limit for get/show_bits_long() to use get/show_bits() directly should be MIN_CACHE_BITS, not 17. Originally committed as revision 21951 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-22Deobfuscate LE SHOW_[SU]BITS; these are simple sign/zero-extendMåns Rullgård
Originally committed as revision 21948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-18Move NEG_[US]SR32 macros to mathops.hMåns Rullgård
Originally committed as revision 21873 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-18get_bits: Fix spelling and grammar in GET_VLC() comment.Alex Converse
Originally committed as revision 21868 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-24Mark index as unsigend so gcc knows it doesnt need a sign extension on x86_64.Michael Niedermayer
Any tips on how i can convince gcc that it doesnt need a mov %eax, %eax in every get_bits() ? Originally committed as revision 21433 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-24Added missing const to get_bits_count().Laurent Aimar
Originally committed as revision 21419 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-22ARM: use ALT_BITSTREAM_READER on cores with fast unaligned accessMåns Rullgård
Originally committed as revision 20911 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-10Make get_bits_left() available for use in libavcodec (was previously heldRonald S. Bultje
private in dv.c for some reason). See "[PATCH] get_bits_left()" thread. Originally committed as revision 20490 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-09Move ff_reverse in libavcodec to av_reverse in libavutil.Francesco Lavra
Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 20484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-24Completely remove INIT_VLC_USE_STATIC, it is deprecated since ages andReimar Döffinger
finally no longer used anywhere. Originally committed as revision 20013 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-11Fix a typo in the documentation.Lars Täuber
Patch by Lars Täuber: firstname taeuber gmx net Originally committed as revision 19820 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-08Try to clarify that anyone using get_bits must check for buffer overrunReimar Döffinger
themselves, get_bits does not do anything in that regard. Originally committed as revision 19794 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk