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
2009-09-25Remove ff_realloc_static, it is no longer used and since it was declaredReimar Döffinger
static there is no reason to wait for a major version bump, removing it does not change ABI in any way, not even the non-public one. Originally committed as revision 20023 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-25Reindent.Reimar Döffinger
Originally committed as revision 20022 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-25Remove a piece of code left-over from the removed alloc'd static vlc table code.Reimar Döffinger
Originally committed as revision 20021 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-07-01Fix potentially unaligned accesses in ff_copy_bits()Måns Rullgård
A pointer should never be assigned a value which may have less than the required alignment of the target type. Compilers may assume pointer values have the required alignment, and emit normal load/store instructions. Unaligned pointers should use a character type or compiler-specific type modifiers. Originally committed as revision 19318 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-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 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
2009-04-11Rename the 'put_zero' parameter of ff_put_string() toStefano Sabatini
'terminate_string'. Originally committed as revision 18442 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21Remove deprecated functions and structures on next version bump.Diego Biurrun
Originally committed as revision 18110 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-10Fix unaligned access in ff_copy_bits()Måns Rullgård
Originally committed as revision 17921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
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
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_Aurelien Jacobs
and remove all ENABLE_ definitions. Originally committed as revision 16600 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-26move ff_log2_run to bitstream.c and reuse in ffv1.cStefan Gehrer
Originally committed as revision 13989 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-31unusedMichael Niedermayer
Originally committed as revision 13572 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-31As *_static are not deallocated anymore except on program terminationMichael Niedermayer
we do not need to keep track of them anymore. Fixes CID117 RUN2 and various race conditions. Originally committed as revision 13571 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-31unusedMichael Niedermayer
Originally committed as revision 13570 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-31Remove non C code.Michael Niedermayer
Originally committed as revision 13569 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-31Move *_static to bitstream.c which is the only file left which needsMichael Niedermayer
them. Originally committed as revision 13568 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-30Make init_vlc* support proper static tables instead of this broken beyondMichael Niedermayer
imagination alloc_static() trash. Originally committed as revision 13561 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'alloc_size' attribute to ff_realloc_static()Zuxy Meng
Originally committed as revision 12527 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-04constMichael Niedermayer
Originally committed as revision 11846 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-28Ahem, fix typos overlooked in last commit.Diego Biurrun
Originally committed as revision 9816 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-28cosmetics: misc typo fixesDiego Biurrun
Originally committed as revision 9815 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-08simplify ff_copy_bits() when compiled with config-smallAurelien Jacobs
Originally committed as revision 9526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-06simplify ff_copy_bits: merge 2 test branchesAurelien Jacobs
Originally committed as revision 9504 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-06move ff_copy_bits to bitstream.cAurelien Jacobs
Originally committed as revision 9503 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05Group all copyright and author notices together.Diego Biurrun
Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05use av_freep() in free_vlc() and failed init_vlc()Måns Rullgård
Originally committed as revision 9474 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-24add init_vlc_sparse(). faster than init_vlc() if there are lots of holes in ↵Loren Merritt
the tables. Originally committed as revision 9117 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-16printf --> av_log, patch by Denis Fortin, fortin nerim netDenis Fortin
Originally committed as revision 9038 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-02patch so that the deprecated items show up correctlyMark Cox
when building doxygen docs patch by mark cox melbournemark plus ffmpeg minus devel chez gmail dot com Originally committed as revision 8866 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-19fix init_vlc() with nonzero flagsMåns Rullgård
Originally committed as revision 8443 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-14deprecate ff_realloc_staticMichael Niedermayer
Originally committed as revision 8404 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-23av_realloc_static() is an internal function and therefore should use the ff_ ↵Panagiotis Issaris
prefix instead of av_. Originally committed as revision 8089 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-22Move the av_realloc_static() declaration out of avcodec.h into bitstream.c.Panagiotis Issaris
Originally committed as revision 8088 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-28move some functions to bitstream.h to avoid conflictsAurelien Jacobs
between different bitstream readers in different codecs Originally committed as revision 6117 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-26move align_get_bits() to .h to avoid conflicts between different bitstream ↵Michael Niedermayer
readers in different codecs add a skip_bits_long() which can skip by any amount in any direction (several codecs contain half working hacks to do that) Originally committed as revision 6093 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-22COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun
Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-09-19Rename put_string to ff_put_string to avoid a symbol clash on Mac OS X.Diego Biurrun
Originally committed as revision 4597 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-05-11LE bitstream reader based upon a patch by (Balatoni Denes <dbalatoni ↵Michael Niedermayer
programozo hu) Originally committed as revision 4215 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-12-29common.c -> bitstream.c (and the single non bitstream func -> utils.c)Michael Niedermayer
common.h -> common.h/bitstream.h Originally committed as revision 3777 to svn://svn.ffmpeg.org/ffmpeg/trunk