summaryrefslogtreecommitdiff
path: root/libavcodec/dca.c
Commit message (Collapse)AuthorAge
* Make VLC tables in DCA decoder use INIT_VLC_USE_NEW_STATICKostya Shishkov2009-04-21
| | | | Originally committed as revision 18643 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
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-12
| | | | | | put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use INIT_VLC_USE_STATIC and not its value "1".Carl Eugen Hoyos2009-04-11
| | | | Originally committed as revision 18430 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
* 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
* Add support for parsing and decoding DCA-HD streams.Kostya Shishkov2008-11-29
| | | | Originally committed as revision 15951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Proper channel output reordering for the dca decoder.Benjamin Larsson2008-11-15
| | | | Originally committed as revision 15832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Comment typoBenjamin Larsson2008-11-11
| | | | Originally committed as revision 15801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove channel layout table that only should be used by encoders.Benjamin Larsson2008-11-11
| | | | Originally committed as revision 15800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the dca channel layout, S -> SIDE not BACK.Benjamin Larsson2008-11-02
| | | | Originally committed as revision 15769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change multichannel API define prefix from "CHANNEL_" to "CH_".Andreas Öman2008-11-02
| | | | Originally committed as revision 15768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Guess channel layout based on the number of channels if a custom layout is ↵Benjamin Larsson2008-11-01
| | | | | | specified in amode. Originally committed as revision 15766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add channel layouts for dca.Benjamin Larsson2008-11-01
| | | | Originally committed as revision 15765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation, remove stray ;Benjamin Larsson2008-10-28
| | | | Originally committed as revision 15735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix selection of quant step tableBenjamin Larsson2008-10-28
| | | | Originally committed as revision 15734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable codec downmix when not using simd instead of silently produce silenceBenjamin Larsson2008-10-26
| | | | Originally committed as revision 15715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dca decoder with non simd float2int16 conversionBenjamin Larsson2008-10-26
| | | | Originally committed as revision 15714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation with TRACEBenjamin Larsson2008-10-26
| | | | Originally committed as revision 15713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the cos_mod table that has become unused after replacing the imdctMichael Niedermayer2008-08-30
| | | | | | by ff_imdct_half(). Originally committed as revision 15050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace obfuscated mdct in qmf_32_subbands() by ff_imdct_half().Michael Niedermayer2008-08-30
| | | | Originally committed as revision 15049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of the 512 sample memmove().Michael Niedermayer2008-08-30
| | | | Originally committed as revision 15048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Half the size of subband_fir_noidea and get rid of memmove & memset of it.Michael Niedermayer2008-08-29
| | | | Originally committed as revision 15033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move t1 and t2 declaration from the QMF code closer to where they are used.Michael Niedermayer2008-08-29
| | | | Originally committed as revision 15024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify (drop useless intermediate sum and diff arrays).Michael Niedermayer2008-08-29
| | | | Originally committed as revision 15023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 5,1l: samples_chanptr[] should be (const float *)Andreas Öman2008-08-29
| | | | Originally committed as revision 15022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dca: Set data_size outside block loop.Andreas Öman2008-08-29
| | | | Originally committed as revision 15021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dca: Do float -> int16 interleaving in-place using ↵Andreas Öman2008-08-29
| | | | | | s->dsp.float_to_int16_interleave() Originally committed as revision 15020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct scaling factor in DCA decoder synthesis.Alexander E. Patrakov2008-08-24
| | | | | | | Patch by Alexander Patrakov ($lastname at gmail.com) Thread: dca.c: output scale is a bit off Originally committed as revision 14937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant FFMIN().Michael Niedermayer2008-08-23
| | | | Originally committed as revision 14918 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase buffer size to 16384 patch by Alexander E. Patrakov" patrakov gmailAlexander E. Patrakov2008-08-23
| | | | | | This fixes a (probably not exploitable) buffer overflow (apparently unknown to its author). Originally committed as revision 14917 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
* 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
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only set channels in the stream if previously unset, fixes resampling crash ↵Benjamin Larsson2008-04-10
| | | | | | on broken dca frames Originally committed as revision 12780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't use unchecked data from the bitstream.Benjamin Larsson2008-03-06
| | | | Originally committed as revision 12351 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
* Fix const qualifer issues found by -Wcast-qual.Michael Niedermayer2008-02-01
| | | | Originally committed as revision 11703 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for request_channels in dca init functionJustin Ruggles2008-01-05
| | | | Originally committed as revision 11423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable proper output from the LFE channel, based on patch from Mathias Rauen ↵Benjamin Larsson2008-01-04
| | | | | | dear dot madshi at net Originally committed as revision 11407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make DCA decoder honor avctx->request_channels in a more advisory way.Andreas Öman2007-12-15
| | | | Originally committed as revision 11221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the correct "const float *" type for variable instead of casting const away.Reimar Döffinger2007-12-02
| | | | Originally committed as revision 11136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set data_size to zero when DCA header parse failedLimin Wang2007-09-06
| | | | | | | Patch by Limin Wang <lance('\\'>>1)lmwang>(0x24^'D')<gmail>('/' & 0xFE)<com> Thread [PATCH] set data_size to zero if failed to parse dca header Originally committed as revision 10423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add request_channels member to AVCodecContext so we now have a properReimar Döffinger2007-08-23
| | | | | | way to tell the decoder how many output channels we would like. Originally committed as revision 10199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix dca_bitalloc_index decoder initSergey Vlasov2007-05-24
| | | | | | | Patch by Sergey Vlasov (printf("%csu at altlinux%s",'v',".ru");) Thread [FFmpeg-devel] [PATCH] dca: fix dca_bitalloc_index decoder init Originally committed as revision 9115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dca.c compilation with #define TRACESergey Vlasov2007-05-24
| | | | | | | Patch by Sergey Vlasov (v\0163u at \0141ltlinux.ru) Thread [FFmpeg-devel] [PATCH] dca: fix compilation with #define TRACE Originally committed as revision 9114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Better error reporting.Benjamin Larsson2007-05-18
| | | | Originally committed as revision 9056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix multiple "‘inline/static’ is not at beginning of declaration" warnings.Diego Biurrun2007-05-05
| | | | Originally committed as revision 8894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move dca parser to its own file.Diego Biurrun2007-05-03
| | | | Originally committed as revision 8881 to svn://svn.ffmpeg.org/ffmpeg/trunk