summaryrefslogtreecommitdiff
path: root/libavcodec/vorbis.c
Commit message (Collapse)AuthorAge
* 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
* whitespace cosmetics, prettyprinting, K&R coding styleDiego Biurrun2009-09-29
| | | | Originally committed as revision 20080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some more linebreak and brace placement cosmeticsDiego Biurrun2009-09-28
| | | | Originally committed as revision 20071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* brace placement and linebreak cosmeticsDiego Biurrun2009-09-28
| | | | Originally committed as revision 20070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Reimar Döffinger2009-08-30
| | | | Originally committed as revision 19745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentLoren Merritt2009-08-27
| | | | Originally committed as revision 19727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1.5x faster ff_vorbis_floor1_render_list, 5% faster vorbis decoding on Core2.Loren Merritt2009-08-27
| | | | | | | | | 1.3x and 3% on G4. Though I think only part of this speedup is due to my optimizations per se; some of it is that I got a better roll on the GCC random code generator. Trivial reorderings of this function have a disproportionate effect on speed. Originally committed as revision 19726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add extra validation checks to ff_vorbis_len2vlc.Reimar Döffinger2009-07-08
| | | | | | They should not be necessary, but it seems like a reasonable precaution. Originally committed as revision 19374 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | 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
* Rename all vorbis encoder related typedefs to not use _t for POSIX compatibilityOded Shimon2008-12-12
| | | | Originally committed as revision 16076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary parentheses from return calls.Diego Biurrun2008-05-06
| | | | Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 30% faster ff_vorbis_floor1_render_list, 3% faster overallLoren Merritt2008-02-09
| | | | Originally committed as revision 11883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2007-07-05
| | | | Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename vorbis.c to vorbis_dec.c and vorbis_common.c to vorbis.cAurelien Jacobs2007-05-10
| | | | Originally committed as revision 8981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* loosen vorbis_enc.c dependencies by spliting vorbis.cAurelien Jacobs2007-05-10
| | | | Originally committed as revision 8980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* extract vorbis header spliting code into a reusable functionAurelien Jacobs2007-03-25
| | | | | | | | Original thread: Date: Thu, 22 Mar 2007 20:23:08 -0400 Subject: [Ffmpeg-devel] [PATCH] Theora in MKV (GSoC '07 Qualification) Originally committed as revision 8505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename inverse -> ff_inverseMåns Rullgård2006-11-12
| | | | Originally committed as revision 6990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ABS macro to FFABS.Diego Biurrun2006-10-11
| | | | Originally committed as revision 6666 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
* remove render_line from vorbis.h, add ff_vorbis_floor1_render_list insteadOded Shimon2006-10-01
| | | | Originally committed as revision 6409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make some more functions global so they can be shared with vorbis_enc.cOded Shimon2006-10-01
| | | | Originally committed as revision 6402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make ready_floor1_list() shared for vorbis_enc.cOded Shimon2006-10-01
| | | | Originally committed as revision 6401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbis.h -> vorbis_data.cOded Shimon2006-09-30
| | | | | | | 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
* Get rid of get_bits_long_le, get_bits_long was fixed and now behaves the ↵Reimar Döffinger2006-09-25
| | | | | | same way. Originally committed as revision 6334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix to vorbis decoder for book==0Oded Shimon2006-09-24
| | | | Originally committed as revision 6328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Diego Biurrun2006-09-10
| | | | Originally committed as revision 6223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbis simd tweaksLoren Merritt2006-08-11
| | | | Originally committed as revision 5983 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbis cosmetics: mdct0,mdct1 => mdct[2]Loren Merritt2006-08-10
| | | | Originally committed as revision 5978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc tweaks in vorbis_residue_decode().Loren Merritt2006-08-10
| | | | | | 4% faster vorbis. Originally committed as revision 5977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sse and 3dnow implementations of float->int conversion and mdct windowing.Loren Merritt2006-08-10
| | | | | | 15% faster vorbis. Originally committed as revision 5975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 3dnow2 implementation of imdct.Loren Merritt2006-08-08
| | | | | | 6% faster vorbis and wma. Originally committed as revision 5954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* another div -> fastdiv, another 2% faster vorbis.Loren Merritt2006-08-03
| | | | Originally committed as revision 5902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sse & sse2 implementations of vorbis channel coupling.Loren Merritt2006-08-03
| | | | | | 9% faster vorbis (on a K8). Originally committed as revision 5898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* int16_t is faster than int_fast16_t for division.Loren Merritt2006-08-03
| | | | | | 2% faster vorbis (on a K8). Originally committed as revision 5897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics. Add the defines needed for debug output.Benjamin Larsson2006-05-11
| | | | Originally committed as revision 5361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix a crash on x86_64Loren Merritt2006-05-11
| | | | Originally committed as revision 5360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbis 5:1 decoding fix, fix mi2_vorbis51.mp4, patch by Denes Balatoni ↵Denes Balatoni2006-05-07
| | | | | | <dbalatoni at programozo dot hu> Originally committed as revision 5349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Vorbis specs requires blocksize_1 >= blocksize_0, error if it's false.Uoti Urpala2006-04-23
| | | | | | | | | Predict buffer size from blocksize_1 and number of channels and make sure this does not exceed AVCODEC_MAX_AUDIO_FRAME_SIZE Patch by Uoti Urpala >>> uoti |.| urpala |@| pp1 |.| inet |.| fi <<< Originally committed as revision 5313 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill some warningsMåns Rullgård2006-02-25
| | | | Originally committed as revision 5063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct the relation between floors of type 0 and block sizes.Alexander Strasser2006-02-05
| | | | Originally committed as revision 4941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l (malloc check with the wrong pointer)Alexander Strasser2006-02-04
| | | | | | | | | Simplification: I have to reconsider this trees and forest thing... Also readded and documented the check i had in the beginning and removed before applying. It avoids a possible div by zero. Originally committed as revision 4934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Added support for vorbis files containing floor type 0.Alexander Strasser2006-02-04
| | | | Originally committed as revision 4933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add static keyword to some functionsDieter2006-01-30
| | | | | | patch by Dieter <freebsd at sopwith solgatos com> Originally committed as revision 4913 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use PRIxN, %zd, %td formats where neededMåns Rullgård2005-12-12
| | | | Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* decrease V_NB_BITS if possibleMichael Niedermayer2005-05-30
| | | | Originally committed as revision 4327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more trivial optimizationsMichael Niedermayer2005-05-30
| | | | Originally committed as revision 4326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* maxdepth is supposed to be a constant, its faster if its too large then if ↵Michael Niedermayer2005-05-30
| | | | | | its non constant Originally committed as revision 4324 to svn://svn.ffmpeg.org/ffmpeg/trunk