summaryrefslogtreecommitdiffstats
path: root/libavcodec/bitstream.h
Commit message (Collapse)AuthorAgeFilesLines
* Add a notice telling that the behavior of skip_put_bits() is undefinedStefano Sabatini2009-03-311-0/+1
| | | | | | if n is 0. Originally committed as revision 18285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a get_sbits_long() function.Justin Ruggles2009-03-031-0/+8
| | | | Originally committed as revision 17740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify show_bits_long and copy the GetBitsContext around only once instead ↵Reimar Döffinger2009-03-021-3/+1
| | | | | | of twice. Originally committed as revision 17736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add size_in_bits to PutBitContextMichael Niedermayer2009-02-051-0/+2
| | | | Originally committed as revision 17006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_WL32/AV_WB32 in bitstream.hReimar Döffinger2009-01-251-8/+2
| | | | Originally committed as revision 16778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-131-7/+7
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace UNALIGNED_STORES_ARE_BAD with !HAVE_FAST_UNALIGNEDMåns Rullgård2008-12-271-6/+2
| | | | Originally committed as revision 16364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: replace "armv4l" with "arm"Måns Rullgård2008-12-171-2/+2
| | | | Originally committed as revision 16179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-161-5/+5
| | | | | | | | | | | | | Neither the asm() nor the __asm__() keyword is part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 syntax. Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-311-3/+3
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo.Stefano Sabatini2008-08-291-1/+1
| | | | Originally committed as revision 15034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Little-endian bitstream writerBartlomiej Wolowiec2008-08-251-0/+26
| | | | Originally committed as revision 14965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove dead code in bitstream.hMåns Rullgård2008-07-151-32/+0
| | | | Originally committed as revision 14238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bitstream: move put_sbits() from flacenc.c to bitstream.h and use itRamiro Polla2008-07-131-0/+7
| | | | | | throughout libavcodec. Originally committed as revision 14204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bitstream: use AV_RB16() in LIBMPEG2_BITSTREAM_READERMåns Rullgård2008-07-131-15/+1
| | | | | | This makes LIBMPEG2_BITSTREAM_READER_HACK redundant, so remove it. Originally committed as revision 14197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Little helper macro to make the use of INIT_VLC_USE_NEW_STATIC easier.Michael Niedermayer2008-05-301-0/+9
| | | | Originally committed as revision 13562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make init_vlc* support proper static tables instead of this broken beyondMichael Niedermayer2008-05-301-1/+2
| | | | | | imagination alloc_static() trash. Originally committed as revision 13561 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-091-4/+4
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-041-2/+2
| | | | Originally committed as revision 11846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make decode210() common function.Kostya Shishkov2008-01-031-0/+7
| | | | Originally committed as revision 11382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-171-3/+3
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move get_unary() to its own fileAurelien Jacobs2007-08-261-46/+0
| | | | Originally committed as revision 10240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * getting rid of code duplicationRoman Shaposhnik2007-08-081-22/+3
| | | | Originally committed as revision 9997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* copy get_unary from vc1Alex Beregszaszi2007-08-081-0/+46
| | | | Originally committed as revision 9994 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2007-08-041-2/+2
| | | | Originally committed as revision 9894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: misc typo fixesDiego Biurrun2007-07-281-1/+1
| | | | Originally committed as revision 9815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_copy_bits to bitstream.cAurelien Jacobs2007-07-061-0/+1
| | | | Originally committed as revision 9503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* include all prerequisites in header filesMåns Rullgård2007-06-161-0/+5
| | | | Originally committed as revision 9344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-121-2/+2
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add init_vlc_sparse(). faster than init_vlc() if there are lots of holes in ↵Loren Merritt2007-05-241-1/+11
| | | | | | the tables. Originally committed as revision 9117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Blackfin is a strictly aligned processor.Marc Hoffman2007-04-211-1/+1
| | | | | | | | Patch by Marc Hoffman mmh _at_ pleasantst.com Subject: [Ffmpeg-devel] PATCH Blackfin UNALIGNED_STORES_ARE_BAD in bitstream.h Date: Tue, 17 Apr 2007 06:12:02 -0400 Originally committed as revision 8777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typos/grammarDiego Biurrun2007-04-071-1/+1
| | | | Originally committed as revision 8641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Supply context to tprintfMichel Bardiaux2007-02-271-2/+2
| | | | Originally committed as revision 8142 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix comment, get/show_bits(0) does not workStefan Gehrer2007-02-191-2/+2
| | | | Originally committed as revision 8029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix bug when __GNUC__ isn't defined and when compiling for a non-x86 ↵Martin Storsjö2006-12-081-2/+2
| | | | | | architecture, patch by Martin Storsjö, martin at martin st Originally committed as revision 7261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename always_inline to av_always_inline and move to common.hMåns Rullgård2006-12-081-1/+1
| | | | Originally committed as revision 7256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use common define for x86_32 and x86_64.Diego Biurrun2006-11-011-6/+6
| | | | Originally committed as revision 6859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix #endif comments.Diego Biurrun2006-10-161-1/+1
| | | | Originally committed as revision 6709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix SHOW_SBITS for ALT_BITSTREAM_READER_LE, patch by Gregory Montoir %cyx A ↵Gregory Montoir2006-10-121-1/+4
| | | | | | users P sourceforge P net% Originally committed as revision 6671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix get_bits_long to work with ALT_BITSTREAM_READER_LE.Reimar Döffinger2006-09-251-0/+5
| | | | | | | Gives the same result as get_bits_long_le in vorbis.c instead of some wild big-/little-endian mixture. Originally committed as revision 6332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add official LGPL license headers to the files that were missing them.Diego Biurrun2006-09-101-0/+18
| | | | Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* inline align_get_bits()Måns Rullgård2006-09-041-1/+1
| | | | Originally committed as revision 6169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant declarationsMåns Rullgård2006-09-021-1/+0
| | | | Originally committed as revision 6153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use the A32_BITSTREAM_READER by default on ARM (faster)Aurelien Jacobs2006-08-281-0/+4
| | | | Originally committed as revision 6120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* force usage of ALT_BITSTREAM_READER where neededAurelien Jacobs2006-08-281-0/+4
| | | | Originally committed as revision 6118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move some functions to bitstream.h to avoid conflictsAurelien Jacobs2006-08-281-5/+35
| | | | | | between different bitstream readers in different codecs Originally committed as revision 6117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix A32_BITSTREAM_READER compilation on x86Aurelien Jacobs2006-08-261-1/+1
| | | | Originally committed as revision 6102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2nd try of skip_bits_long() for the ALT readerMichael Niedermayer2006-08-261-20/+14
| | | | | | | 1st try for the LIBMPEG2 reader simplify init_get_bits() Originally committed as revision 6097 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud