summaryrefslogtreecommitdiff
path: root/libavcodec/qdm2.c
Commit message (Collapse)AuthorAge
...
* Return the amount of input data actually used in the qdm2 decoder,Reimar Döffinger2010-12-13
| | | | | | allows playback of files where multiple qdm2 packets have been merged. Originally committed as revision 25943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix qdm2 decoder packet handling to match the apiBaptiste Coudurier2010-11-19
| | | | Originally committed as revision 25767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
| | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix undefined expressions that use multiple calls to get_bits().Alex Converse2010-08-24
| | | | | | | | | Because the order of evaluation of subexpressions is undefined, two get_bits() calls may not be part of the same expression. See also r24902. Originally committed as revision 24906 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove non-existing stray arguments from Doxygen function documentation.Diego Biurrun2010-07-02
| | | | Originally committed as revision 23976 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow hard-coding several QDM2 tables (about 32 kB size).Reimar Döffinger2010-03-14
| | | | Originally committed as revision 22525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give RDFT types more meaningful namesMåns Rullgård2010-03-07
| | | | Originally committed as revision 22290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move FFT parts from dsputil.h to fft.hMåns Rullgård2010-03-06
| | | | Originally committed as revision 22235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård2010-03-06
| | | | | | | These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead. Originally committed as revision 22233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård2010-01-22
| | | | Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegaudiodec, mpc and qdm2 all use the same mpa_synth window, so makeReimar Döffinger2009-10-19
| | | | | | | them use the same variable/global storage. Saves 4 kB in .bss. Originally committed as revision 20314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IndentBenjamin Larsson2009-05-17
| | | | Originally committed as revision 18864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Switch from INIT_VLC_USE_STATIC to INIT_VLC_USE_NEW_STATIC in qdm2.Benjamin Larsson2009-05-17
| | | | Originally committed as revision 18863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant code, found by CSABenjamin Larsson2009-04-22
| | | | Originally committed as revision 18661 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
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
| | | | | | | | | | | AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing av_cold in static init/close functions.Daniel Verkamp2009-02-22
| | | | | | Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 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
* Use the new RDFT code in the QDM2 decoder.Alex Converse2009-01-30
| | | | Originally committed as revision 16865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CONFIG_MPEGAUDIO_HP directly instead of USE_HIGHPRECISION indirection.Diego Biurrun2009-01-14
| | | | Originally committed as revision 16594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-31
| | | | Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent the qdm2 code from overreading/overflowing. Fixes Coverity ID 112 run 2Benjamin Larsson2008-07-19
| | | | Originally committed as revision 14309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix for possible null pointer dereferencing, closes Coverity report 68 run 2.Benjamin Larsson2008-07-19
| | | | Originally committed as revision 14305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor simplification of qdm2_decode_fft_packets()Michael Niedermayer2008-07-18
| | | | Originally committed as revision 14284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mark read-only data as constStefan Gehrer2008-06-24
| | | | Originally committed as revision 13947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consistency cosmetics: indices --> indexesDiego Biurrun2008-05-26
| | | | Originally committed as revision 13444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fix: inited --> initializedDiego Biurrun2008-02-13
| | | | Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename two structures, identifiers starting with _[A-Z] are reserved.Diego Biurrun2008-01-06
| | | | Originally committed as revision 11435 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
* Use DECLARE_ALIGNED to ease portingReimar Döffinger2007-05-15
| | | | Originally committed as revision 9031 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
* 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
* Fixed a possible bug, checked against the assembly.Benjamin Larsson2006-06-02
| | | | | | No sample that used the code has been found though. Originally committed as revision 5448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10000l don't reuse outer loop index in inner loopsRoberto Togni2006-05-29
| | | | Originally committed as revision 5423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix infinite loopMichael Niedermayer2006-03-02
| | | | Originally committed as revision 5102 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 4914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a bunch of spelling/grammar mistakes in doxygen comments and output.Diego Biurrun2006-01-14
| | | | Originally committed as revision 4855 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
* Support for samples with fft_order = 7Roberto Togni2005-12-06
| | | | | | | | Fail init for unknown fft order, to prevent an array overflow Output sound high-pitched compared to binary. Sample here http://a1862.g.akamai.net/7/1862/14448/v1/esa.download.akamai.com/13452/qt/ESA_VenusExpress_110K_Stream.mov Originally committed as revision 4724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated fft initRoberto Togni2005-12-06
| | | | Originally committed as revision 4723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init_get_bits() requires size in bits, not bytesSteve L'Homme2005-10-19
| | | | | | Patch by Steve Lhomme ||| steve | lhomme >at< free | fr ||| Originally committed as revision 4653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* QDM2 compatible decoderRoberto Togni2005-10-18
Originally committed as revision 4650 to svn://svn.ffmpeg.org/ffmpeg/trunk