summaryrefslogtreecommitdiff
path: root/libavcodec/bitstream_filter.c
Commit message (Collapse)AuthorAge
* lavc: add a new bitstream filtering APIAnton Khirnov2016-03-20
| | | | Deprecate the current bitstream filtering API.
* bsf: check memory allocationsVittorio Giovara2015-01-15
|
* avcodec: Mark argument in av_{parser|hwaccel|bitstream_filter}_next as constDiego Biurrun2014-07-26
|
* bitstream_filter: K&R formatting cosmeticsLuca Barbato2013-07-05
|
* Don't include common.h from avutil.hMartin Storsjö2012-08-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* libavcodec: Don't do av_free(av_malloc(0)) for bitstream filtersMartin Storsjö2012-02-09
| | | | | | | This fixes crashes on exit when closing a bitstream filter that hasn't allocated any private data, on OS X. Signed-off-by: Martin Storsjö <martin@martin.st>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Mark list heads static. Patch by Diego PettenòDiego Pettenò2008-10-04
| | | | Originally committed as revision 15548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_*_next() API for libavcodecMichael Niedermayer2007-12-12
| | | | Originally committed as revision 11204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a close function to bitstream filterBenoit Fouet2007-09-04
| | | | Originally committed as revision 10288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move dump_extradata bitstream filter in its own fileAurelien Jacobs2007-05-19
| | | | Originally committed as revision 9066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move remove_extradata bitstream filter in its own fileAurelien Jacobs2007-05-19
| | | | Originally committed as revision 9065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move noise bitstream filter in its own fileAurelien Jacobs2007-05-19
| | | | Originally committed as revision 9064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mp3_header_compress bitstream filter in its own fileAurelien Jacobs2007-05-19
| | | | Originally committed as revision 9063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mp3_header_decompress bitstream filter in its own fileAurelien Jacobs2007-05-19
| | | | Originally committed as revision 9062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add proper prefix to extern mpeg audio data tablesAurelien Jacobs2007-05-19
| | | | Originally committed as revision 9061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move some common mpeg audio tables from mpegaudiodectab.h to mpegaudiodata.cAurelien Jacobs2007-05-19
| | | | Originally committed as revision 9060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow to enable or disable every bitstream filters individuallyJason Millard2007-05-12
| | | | | | | | Original patch by Jason Millard jsm174 _at_ gmail Date: On Fri, 11 May 2007 11:14:01 -0400 Subject: [FFmpeg-devel] enable/disable bitstream filters? Originally committed as revision 9010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-19
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* zero private bitsMichael Niedermayer2006-11-10
| | | | Originally committed as revision 6961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store a identifer and the first header in extradataMichael Niedermayer2006-11-10
| | | | | | | with this mp3 should be binary identical to what you had before header compression support mp3 with crc (by droping the crc and putting it back during header decompress, currently its just random tough, does any deocoder even check it?) Originally committed as revision 6960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mp3 header (de)compression bitstream filterMichael Niedermayer2006-11-10
| | | | | | | | | this will make mp3 frames 4 bytes smaller, it will not give you binary identical mp3 files, but it will give you mp3 files which decode to binary identical output this will only work in containers providing at least packet size, sample_rate and number of channels bugreports about mp3 files for which this fails are welcome and this is experimental (dont expect compatibility and dont even expect to be able to decompress what you compressed, hell dont even expect this to work without editing the source a little) Originally committed as revision 6958 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add official LGPL license headers to the files that were missing them.Diego Biurrun2006-09-10
| | | | Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* noise bitstream filterMichael Niedermayer2006-07-06
| | | | | | add priv_data field to AVBitStreamFilterContext Originally committed as revision 5644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVBitStreamFilter (some thingy which can modify the bitstream like add or ↵Michael Niedermayer2006-07-06
remove global headers or change the headers or ...) Originally committed as revision 5643 to svn://svn.ffmpeg.org/ffmpeg/trunk