summaryrefslogtreecommitdiff
path: root/libavcodec/pcm.c
Commit message (Collapse)AuthorAge
...
* Use "const" qualifier for pointers that point to input data ofReimar Döffinger2010-07-24
| | | | | | | audio encoders. This is purely for clarity/documentation purposes. Originally committed as revision 24481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use designated initialisers for pcm codec structPeter Ross2010-07-16
| | | | Originally committed as revision 24264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set bits_per_raw_sample in the pcm decoder.Justin Ruggles2010-06-10
| | | | Originally committed as revision 23566 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
* Allow hardcoding of ulaw and alaw tables.Reimar Döffinger2010-04-01
| | | | Originally committed as revision 22762 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
* Move ff_reverse in libavcodec to av_reverse in libavutil.Francesco Lavra2009-11-09
| | | | | | Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 20484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-06
| | | | | | .data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-26
| | | | Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IndentMichael Niedermayer2009-04-19
| | | | Originally committed as revision 18627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not discard truncated packets.Michael Niedermayer2009-04-19
| | | | | | Based on a patch by Maksym Veremeyenko verem DOT m1stereo AT tv Originally committed as revision 18626 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
* cosmetics: Reformat long_names so that "PCM" comes first.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17719 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
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WORDS_BIGENDIAN must be checked with #ifdefAurelien Jacobs2009-01-14
| | | | Originally committed as revision 16608 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
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-08
| | | | | | | | | | | bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make pcm encoder setting bits_per_sample fieldBaptiste Coudurier2008-09-01
| | | | Originally committed as revision 15150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Upgrade 20/24-bit PCM DVD decoder use SAMPLE_FMT_S32. Patch supplied by lars ↵Peter Ross2008-08-23
| | | | | | dot taeuber at gmx dot net. Originally committed as revision 14931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix PCM DVD divide by zero bug introduced in r14659. Patch supplied by lars ↵Peter Ross2008-08-20
| | | | | | dot taeuber at gmx dot net. Originally committed as revision 14864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add F64BE, F64LE and F64BE PCM codecs.Peter Ross2008-08-19
| | | | Originally committed as revision 14833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix PCM_S16LE_PLANAR channel-address calculation bug introduced in r14659.Peter Ross2008-08-19
| | | | Originally committed as revision 14831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use memcpy() for PCM S16/S32 codecs when codec byte-order matches machine ↵Peter Ross2008-08-16
| | | | | | byte-order. Originally committed as revision 14784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix CODEC_ID_PCM_U8 decoder output size calculation to support odd-number of ↵Peter Ross2008-08-12
| | | | | | samples. Originally committed as revision 14712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply PCM ENCODE/DECODE() macros to the S/U,8/24/32,LE/BE PCM codecs.Peter Ross2008-08-11
| | | | Originally committed as revision 14692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add simpler/cleaner/faster F32BE encoding/decoding.Peter Ross2008-08-07
| | | | Originally committed as revision 14660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify PCM codec; change 'n' in pcm_decode_frame() to equal "total number ↵Peter Ross2008-08-07
| | | | | | of samples". Originally committed as revision 14659 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent DAUD PCM encoder from fetching values outside of ff_reverse[] array ↵Peter Ross2008-08-07
| | | | | | bounds when input sample values are < 0. Originally committed as revision 14658 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify PCM codec; replace switch() statements with av_get_bits_per_sample().Peter Ross2008-08-04
| | | | Originally committed as revision 14534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field.Peter Ross2008-08-04
| | | | Originally committed as revision 14533 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
* add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)Peter Ross2008-07-26
| | | | Originally committed as revision 14409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a note to remind people that new PCM/ADPCM formats need to be added toDiego Biurrun2008-07-05
| | | | | | the Makefile as well to allow proper selective compilation. Originally committed as revision 14072 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
* LPCM 24 bits support, patch by Lars Täuber, lars.taeuber gmx netLars Täuber2008-05-17
| | | | Originally committed as revision 13187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix big-endian vs. little-endian typo.Diego Biurrun2008-05-16
| | | | Originally committed as revision 13181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add PCM codec long names; by Stefano Sabatini, stefano.sabatini-lala poste it.Diego Biurrun2008-05-16
| | | | Originally committed as revision 13179 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
* cosmetics: Sort some lists alphabetically.Diego Biurrun2008-04-17
| | | | Originally committed as revision 12886 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
* constsMichael Niedermayer2008-02-01
| | | | | | I have underestimated this a little, and these are just some ... Originally committed as revision 11708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix crash in PCM decoder when number of channels is not set.wg2007-12-17
| | | | | | | Patch by "wg": video06 malloc de See Issue298 Originally committed as revision 11249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: alignmentAurelien Jacobs2007-11-27
| | | | Originally committed as revision 11098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add pcm_s16le_planar support for electronicarts filesAurelien Jacobs2007-11-25
| | | | Originally committed as revision 11092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODERAurelien Jacobs2007-11-07
| | | | Originally committed as revision 10946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless #undefAurelien Jacobs2007-11-01
| | | | Originally committed as revision 10897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support silly PCM variant used by zork nemesisMichael Niedermayer2007-07-30
| | | | | | fixes audio decoding of T000A11C.AVI Originally committed as revision 9831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r8979 (Ugly fix for r8963)Ramiro Polla2007-05-10
| | | | Originally committed as revision 8983 to svn://svn.ffmpeg.org/ffmpeg/trunk