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-02-26vorbisdec: cosmetics: rename variable avccontext to avctxJustin Ruggles
This is consistent with the rest of libavcodec.
2013-01-21vorbisdsp: change block_size type from int to intptr_t.Ronald S. Bultje
This saves one instruction in the x86-64 assembly.
2012-10-06Give all anonymously typedeffed structs in headers a nameDiego Biurrun
Anonymous structs cannot be forward declared and have no benefit.
2012-06-05vorbis: Validate that the floor 1 X values contain no duplicates.Alex Converse
Duplicate values in this vector are explicitly banned by the Vorbis I spec and cause divide-by-zero crashes later on.
2012-02-16vorbis: Add ff_ prefix to nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-25Make channel layout masks unsignedMans Rullgard
It makes more sense for a bit mask to use an unsigned type. The change should be source and binary compatible on all supported systems, hence micro version bump. Fixes a few invalid shifts. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-12Replace int_fast integer types with their sized standard posix counterparts.Diego Biurrun
The _fast integer types provide no realworld benefits, but may introduce portability issues and are just plain ugly.
2011-04-29vorbis: Replace sized int_fast integer types with plain int/unsigned.Diego Biurrun
int/unsigned is the natural memory access type for CPUs, using sized types for temporary variables, counters and similar just increases code size and can possibly cause a slowdown.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-06-27Fix libvorbis encoding with more than 2 channelsJames Darnley
Fixes issue 1325. Patch by James Darnley, james dot darnley at gmail Originally committed as revision 23818 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Move some prototypes from dsputil.c to reasonable header filesMåns Rullgård
Originally committed as revision 22260 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-29Add support for vorbis 6.1 and 7.1 channel configurations as per the new specRobert Swain
http://xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-800004.3.9 Originally committed as revision 21527 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-02Add vorbis channel layout support according to those defined in the Vorbis IRobert Swain
specification Originally committed as revision 20148 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29brace placement and linebreak cosmeticsDiego Biurrun
Originally committed as revision 20070 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-12Rename all vorbis encoder related typedefs to not use _t for POSIX compatibilityOded Shimon
Originally committed as revision 16076 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31Globally rename the header inclusion guard names.Stefano Sabatini
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
2008-06-25mark read-only data as constStefan Gehrer
Originally committed as revision 13947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun
Originally committed as revision 10765 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-10-01remove render_line from vorbis.h, add ff_vorbis_floor1_render_list insteadOded Shimon
Originally committed as revision 6409 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-01prevent warning in vorbis_data.cOded Shimon
Originally committed as revision 6404 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-01100l, broke ffmpeg compilation, ABS() and uint* types not defined in ↵Oded Shimon
vorbis_data.c Originally committed as revision 6403 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-01make some more functions global so they can be shared with vorbis_enc.cOded Shimon
Originally committed as revision 6402 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-01make ready_floor1_list() shared for vorbis_enc.cOded Shimon
Originally committed as revision 6401 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-30vorbis.h -> vorbis_data.cOded Shimon
move tables from vorbis.h to a C file so they can be used later in vorbis_enc.c Originally committed as revision 6398 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-10Add official LGPL license headers to the files that were missing them.Diego Biurrun
Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-11vorbis cosmetics: mdct0,mdct1 => mdct[2]Loren Merritt
Originally committed as revision 5978 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-10sse and 3dnow implementations of float->int conversion and mdct windowing.Loren Merritt
15% faster vorbis. Originally committed as revision 5975 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-03sse & sse2 implementations of vorbis channel coupling.Loren Merritt
9% faster vorbis (on a K8). Originally committed as revision 5898 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-02-05Correct the relation between floors of type 0 and block sizes.Alexander Strasser
Originally committed as revision 4941 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-02-04Cosmetic: Fix indentation.Alexander Strasser
Originally committed as revision 4935 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-02-04Added support for vorbis files containing floor type 0.Alexander Strasser
Originally committed as revision 4933 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-05-31decrease V_NB_BITS if possibleMichael Niedermayer
Originally committed as revision 4327 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-05-30Vorbis sse fix by (Balatoni Denes: dbalatoni, programozo hu)Michael Niedermayer
Originally committed as revision 4317 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-05-17Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)Michael Niedermayer
Originally committed as revision 4261 to svn://svn.ffmpeg.org/ffmpeg/trunk