summaryrefslogtreecommitdiff
path: root/libavformat/aiff.c
Commit message (Collapse)AuthorAge
* Remove offset_t typedef and use int64_t directly instead.Diego Biurrun2008-10-03
| | | | | | | The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included. Originally committed as revision 15533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum typers instead of int.Diego Pettenò2008-10-02
| | | | | | Patch by Diego 'Flameeyes' Pettenò: flameeyes gmail Originally committed as revision 15517 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
* set block align and frame size for gsm in aiffBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace generic CONFIG_MUXERS preprocessor conditionals by more specificDiego Biurrun2008-09-02
| | | | | | CONFIG_FOO_MUXER conditionals where appropriate. Originally committed as revision 15158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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