summaryrefslogtreecommitdiff
path: root/libavformat/aiff.c
Commit message (Collapse)AuthorAge
* Change codec_tag type from const struct AVCodecTag ** to const struct ↵Reimar Döffinger2008-08-24
| | | | | | AVCodecTag * const * Originally committed as revision 14947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AIFF demuxer handle F32BE and F64BE PCM audio.Peter Ross2008-08-19
| | | | Originally committed as revision 14837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsBaptiste Coudurier2008-06-28
| | | | Originally committed as revision 14018 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, align verticallyBaptiste Coudurier2008-06-28
| | | | Originally committed as revision 14017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove wrappers of pcm_read_seek().Ramiro Polla2008-06-06
| | | | Originally committed as revision 13680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try to demux even if codec is not recognized, should demux ↵Baptiste Coudurier2008-05-15
| | | | | | M1F1-float32C-AFsp.aif and fix #454 Originally committed as revision 13171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not fail if correct is not recognizedBaptiste Coudurier2008-05-15
| | | | Originally committed as revision 13170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove space before opening parenthesisBaptiste Coudurier2008-05-15
| | | | Originally committed as revision 13169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set block align for mace3/6Baptiste Coudurier2008-03-05
| | | | Originally committed as revision 12328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly compute bit rate for compressed audio, should fix seeking in aiffBaptiste Coudurier2008-03-05
| | | | Originally committed as revision 12327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix mace durationBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, protect malloc overflowBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support QDM2 in aiff, QDM2.aifBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless close functionBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless castsBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless tags, codec_get_id matches independently and qt uses lower ↵Baptiste Coudurier2008-02-25
| | | | | | case tags Originally committed as revision 12199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set bps to uncompressed original sound data for compressed audioBaptiste Coudurier2008-02-25
| | | | | | | according to aiff specs, qt set it to 16 for mace and ima4, fail if block align is not set. Originally committed as revision 12198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix duration for ima4Baptiste Coudurier2008-02-25
| | | | Originally committed as revision 12197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ima4 in aiff supportBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move unrelated functions declarations out of allformats.hAurelien Jacobs2007-09-11
| | | | Originally committed as revision 10475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compute absolute data offset after reading blocksizeBaptiste Coudurier2007-06-26
| | | | Originally committed as revision 9441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* this is named BlockSize in specsBaptiste Coudurier2007-06-25
| | | | Originally committed as revision 9430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* according to specs, offset is before blocksizeBaptiste Coudurier2007-06-25
| | | | Originally committed as revision 9429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support files with COMM chunk after SSND, fix invalid_nocommon.aiff which is ↵Baptiste Coudurier2007-06-25
| | | | | | spec compliant Originally committed as revision 9428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for newer MacOSX AIFFKostya Shishkov2007-04-27
| | | | Originally committed as revision 8852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate 32 extra bytes at the end of the probe buffer and remove most probe ↵Michael Niedermayer2007-04-08
| | | | | | buf_size checks Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100lBaptiste Coudurier2007-02-14
| | | | Originally committed as revision 7980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2007-02-14
| | | | Originally committed as revision 7979 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use aiff when we can, some players only support aiffBaptiste Coudurier2007-02-14
| | | | Originally committed as revision 7978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* the context is supposed to be freed in the generic code in utils.cMichael Niedermayer2007-01-21
| | | | Originally committed as revision 7604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove now useless codec_tag setting code in muxersMichael Niedermayer2007-01-21
| | | | Originally committed as revision 7603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of the [4] limitation of codec tag listsMichael Niedermayer2007-01-21
| | | | Originally committed as revision 7596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export a few more codec_tag-codec_id tablesMichael Niedermayer2007-01-21
| | | | Originally committed as revision 7594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add codec_id <-> codec_tag tables to AVIn/OutputFormatMichael Niedermayer2007-01-21
| | | | Originally committed as revision 7593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make some symbols staticMåns Rullgård2006-11-11
| | | | Originally committed as revision 6973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace coder/decoder file description in libavformat by muxer/demuxerAurelien Jacobs2006-10-23
| | | | Originally committed as revision 6774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix bit rateBaptiste Coudurier2006-10-11
| | | | Originally committed as revision 6646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_get_bits_per_sampleBaptiste Coudurier2006-10-11
| | | | Originally committed as revision 6645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_get_bits_per_sample, compute block align if not setBaptiste Coudurier2006-10-11
| | | | Originally committed as revision 6644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify by not writing unneeded codec name to fix segfault when stream copyBaptiste Coudurier2006-10-11
| | | | Originally committed as revision 6643 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
* move common stuff from avienc.c and wav.c to new file riff.cMåns Rullgård2006-07-12
| | | | Originally committed as revision 5720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CONFIG_AIFF_DEMUXER vs CONFIG_AIFF_MUXER typoDiego Biurrun2006-07-11
| | | | Originally committed as revision 5708 to svn://svn.ffmpeg.org/ffmpeg/trunk