summaryrefslogtreecommitdiff
path: root/libavcodec/put_bits.h
Commit message (Collapse)AuthorAge
* put_bits: Remove unused includesVittorio Giovara2014-03-04
| | | | | This requires adding includes to other files that relied on these being included implicitly.
* lavc: move put_bits_left in put_bits.hLuca Barbato2013-06-28
|
* get_bits/put_bits: K&R formatting cosmeticsDiego Biurrun2013-01-21
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* avcodec: Drop silly and/or broken printf debug outputDiego Biurrun2012-10-01
|
* Rename ff_put_string to avpriv_put_stringMartin Storsjö2012-09-09
| | | | | | | 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>
* lavc: use avpriv_ prefix for ff_copy_bits and align_put_bits.Anton Khirnov2011-10-20
| | | | They are used in lavf.
* put_bits: fix invalid shift by 32 in flush_put_bits()Mans Rullgard2011-10-08
| | | | | | | | | 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>
* put_bits: remove ALT_BITSTREAM_WRITERMans Rullgard2011-07-02
| | | | | | The code for this variant does not compile. Signed-off-by: Mans Rullgard <mans@mansr.com>
* put_bits: always use intreadwrite.h macrosMans Rullgard2011-07-02
| | | | | | This fixes invalid unaligned stores in some ARM configurations. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add missing #includes to make headers self-contained.Diego Biurrun2011-06-04
| | | | This fixes 'make checkheaders'.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add av_ prefix to bswap macrosMåns Rullgård2010-07-10
| | | | Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bswap: change ME to NE in macro namesMåns Rullgård2010-07-10
| | | | | | | 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
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | 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
* Make sure that compilation fails if functions like ff_put_string are used in ↵Reimar Döffinger2009-12-07
| | | | | | | | code that selected a bitstream writer for which they do not work. Originally committed as revision 20761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix typo, ALT_BITSTREAM_WRITER_LE does not existBaptiste Coudurier2009-12-01
| | | | Originally committed as revision 20692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename parameters of put_sbits() to make them consistent with those ofStefano Sabatini2009-11-30
| | | | | | put_bits(). Originally committed as revision 20677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use more consistent / meaningful parameter names for theStefano Sabatini2009-11-29
| | | | | | ff_copy_bits() function. Originally committed as revision 20663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix put_bits32() doxy.Stefano Sabatini2009-11-28
| | | | Originally committed as revision 20639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently put braces for function definitions.Stefano Sabatini2009-11-28
| | | | Originally committed as revision 20638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo, "Write" -> "Writes".Stefano Sabatini2009-11-28
| | | | Originally committed as revision 20637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put_bits can only reliably write up to 31 bit bits, above it relies onReimar Döffinger2009-10-01
| | | | | | | | 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
* Remove '\p', '\c' and '\e' doxygen markup from doxy, as it shouldStefano Sabatini2009-06-06
| | | | | | | | 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
* Fix skip_put_bits() buf_ptr increment.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename pbBufPtr() to put_bits_ptr().Stefano Sabatini2009-04-13
| | | | | | | 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
* Document pbBufPtr().Stefano Sabatini2009-04-12
| | | | Originally committed as revision 18466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-12
put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk