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
2013-06-28lavc: move put_bits_left in put_bits.hLuca Barbato
2013-01-21get_bits/put_bits: K&R formatting cosmeticsDiego Biurrun
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-10-01avcodec: Drop silly and/or broken printf debug outputDiego Biurrun
2012-09-09Rename ff_put_string to avpriv_put_stringMartin Storsjö
This allows using it from libavformat as well. This will be used by the RTP/JPEG depacketizer. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-10-20lavc: use avpriv_ prefix for ff_copy_bits and align_put_bits.Anton Khirnov
They are used in lavf.
2011-10-08put_bits: fix invalid shift by 32 in flush_put_bits()Mans Rullgard
If flush_put_bits() is called when the 32-bit buffer is empty, e.g. after writing a multiple of 32 bits, and invalid shift by 32 is performed. Since flush_put_bits() is called infrequently, this additional check should have negligible performance impact. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-02put_bits: remove ALT_BITSTREAM_WRITERMans Rullgard
The code for this variant does not compile. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-02put_bits: always use intreadwrite.h macrosMans Rullgard
This fixes invalid unaligned stores in some ARM configurations. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04Add missing #includes to make headers self-contained.Diego Biurrun
This fixes 'make checkheaders'.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
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-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 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
2009-12-08Make sure that compilation fails if functions like ff_put_string are used in ↵Reimar Döffinger
code that selected a bitstream writer for which they do not work. Originally committed as revision 20761 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-02fix typo, ALT_BITSTREAM_WRITER_LE does not existBaptiste Coudurier
Originally committed as revision 20692 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-01Rename parameters of put_sbits() to make them consistent with those ofStefano Sabatini
put_bits(). Originally committed as revision 20677 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-30Use more consistent / meaningful parameter names for theStefano Sabatini
ff_copy_bits() function. Originally committed as revision 20663 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-28Fix put_bits32() doxy.Stefano Sabatini
Originally committed as revision 20639 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-28Consistently put braces for function definitions.Stefano Sabatini
Originally committed as revision 20638 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-28Fix typo, "Write" -> "Writes".Stefano Sabatini
Originally committed as revision 20637 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-01put_bits can only reliably write up to 31 bit bits, above it relies onReimar Döffinger
undefined shift behaviour. Document this, fix the assert and add a put_bits32 to handle writing 32 bits and use that where necessary. Originally committed as revision 20124 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-06Remove '\p', '\c' and '\e' doxygen markup from doxy, as it shouldStefano Sabatini
improve plain text doxy readability. See the thread: "[RFC] Should we use doxygen markup?". Originally committed as revision 19122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-14Fix skip_put_bits() buf_ptr increment.Stefano Sabatini
Originally committed as revision 18499 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename pbBufPtr() to put_bits_ptr().Stefano Sabatini
The new name is more readable and consistent with the FFmpeg naming style. Originally committed as revision 18497 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Document pbBufPtr().Stefano Sabatini
Originally committed as revision 18466 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini
put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk