summaryrefslogtreecommitdiffstats
path: root/libavformat/ape.c
Commit message (Collapse)AuthorAgeFilesLines
* ape: use correct context for the bit table printed in debugKostya Shishkov2013-03-271-1/+1
|
* ape: 3.80-3.92 decoding supportKostya Shishkov2013-03-251-3/+25
|
* add support for Monkey's Audio versions from 3.93Kostya Shishkov2013-03-151-1/+1
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-071-1/+1
|
* ape: create audio stream before reading tags.Anton Khirnov2012-06-241-6/+6
| | | | | | | Tags may contain attached picture, which will be exported as video streams. This ensures that the audio stream is always the first.
* cosmetics: Align muxer/demuxer declarationsMartin Storsjö2012-04-061-1/+1
| | | | | | | Also add missing trailing commas, break long codec_tag lines and add spaces in codec_tag declarations. Signed-off-by: Martin Storsjö <martin@martin.st>
* ape: do not set AVCodecContext.frame_size.Justin Ruggles2012-03-051-1/+0
| | | | prevents lavf from setting incorrect packet durations.
* ape: skip packets with invalid sizeJustin Ruggles2012-02-061-0/+8
|
* ape: calculate final packet size instead of guessingJustin Ruggles2012-02-061-3/+12
| | | | | | | Calculates based on total file size and wavetaillength from the header. Falls back to multiplying finalframeblocks by 8 instead of 4 so that it will at least be overestimating for 24-bit. Currently it can underestimate the final packet size, leading to decoding errors.
* ape: stop reading after the last frame has been readJustin Ruggles2012-02-061-1/+1
| | | | This avoids buffer overread when the last packet size estimate is too small.
* ape: return AVERROR_EOF instead of AVERROR(EIO) when demuxing is finishedJustin Ruggles2012-02-061-2/+2
|
* ape: return error if seeking to the current packet fails in ape_read_packet()Justin Ruggles2012-02-061-1/+2
|
* ape: fix seekingPaul B Mahol2012-02-041-0/+2
| | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov2012-01-271-1/+1
|
* lavf: make av_set_pts_info private.Anton Khirnov2011-11-301-1/+2
| | | | It's supposed to be called only from (de)muxers.
* lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov2011-10-191-1/+1
| | | | | Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
* ape demuxer: fix segfault on memory allocation failure.Laurent Aimar2011-09-121-0/+2
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* ape: adjust some printf format strings to correctly match argument typesDiego Biurrun2011-07-261-4/+7
|
* lavf: use designated initialisers for all (de)muxers.Anton Khirnov2011-07-171-8/+8
| | | | It's more readable and less prone to breakage.
* Replace custom DEBUG preprocessor trickery by the standard one.Diego Biurrun2011-06-031-3/+1
|
* Employ correct printf format specifiers, mostly in debug output.Diego Biurrun2011-05-311-24/+30
|
* ape: Allow demuxing of files with metadata tags.Carl Eugen Hoyos2011-05-241-3/+3
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avio: introduce an AVIOContext.seekable fieldAnton Khirnov2011-04-031-1/+1
| | | | Use it instead of url_is_streamed and AVIOContext.is_streamed.
* ape: check that number of seektable entries is equal to number of framesKostya Shishkov2011-04-011-0/+5
| | | | | | fixes issue2480 Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov2011-03-161-3/+3
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Do not attempt to decode APE file with no framesKostya2011-03-161-0/+4
| | | | | This fixes invalid reads/writes with this sample: http://packetstorm.linuxsecurity.com/1103-exploits/vlc105-dos.txt
* avio: deprecate url_feofAnton Khirnov2011-03-071-1/+1
| | | | | | AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: replace all uses of url_fskip with avio_seekAnton Khirnov2011-03-011-1/+1
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefix for url_fseekAnton Khirnov2011-03-011-4/+4
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefixes for get_* functionsAnton Khirnov2011-02-211-30/+30
| | | | | | | | | | | | | | In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-201-1/+1
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-261-1/+1
| | | | | This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
* Replace all remaining occurrences of AVERROR_NOMEM withStefano Sabatini2010-04-031-2/+2
| | | | | | | | | AVERROR(ENOMEM). AVERROR_NOMEM is deprecated and will be dropped at the next libavutil major bump. Originally committed as revision 22791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-301-1/+1
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and markStefano Sabatini2010-03-131-2/+2
| | | | | | AVERROR_EIO for deletion at the next major bump. Originally committed as revision 22513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set start_time and duration in AVStream instead of AVFormatContext forDavid Conrad2010-01-211-2/+2
| | | | | | | formats with only one stream; the AVFormatContext values will be derived from the AVStream and this helps in calculating stream bitrate. Originally committed as revision 21361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move APE tag parsing into separate module.Kostya Shishkov2009-08-111-98/+2
| | | | | | Based on patch by Matti Hamalainen (mhamalai<mot>students<punkt>oamk<punkt>) Originally committed as revision 19629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use internals of ByteIOContext during APE tags parsing.Matti Hamalainen2009-08-111-12/+18
| | | | | | | Patch by Matti Hamalainen, mail = reverse("if.kmao.stneduts@ialamahm") Thread: [PATCH] 2/6 Fix broken APE tag key handling Originally committed as revision 19628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove incorrect APE tag size adjustment based on flags.Matti Hamalainen2009-08-111-3/+0
| | | | | | | Patch by Matti Hamalainen (mhamalai <luona> students <piste> oamk <piste> fi) Thread: [PATCH] 1/6 Remove incorrect APE tag size adjustment based on flags Originally committed as revision 19627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* apedec: display a warning when truncating a metadata tagAurelien Jacobs2009-02-171-0/+2
| | | | Originally committed as revision 17394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in ape demuxerAurelien Jacobs2009-02-171-39/+11
| | | | Originally committed as revision 17388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a context to av_log() calls and extend ape_dumpinfo prototype to do that.Benoit Fouet2009-02-161-47/+47
| | | | Originally committed as revision 17372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-111-0/+1
| | | | Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-081-1/+1
| | | | | | | | | | | 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 long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-031-1/+1
| | | | | | | 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
* Missing tags in APE is normal situation, so don't print an error.Kostya Shishkov2008-04-261-1/+0
| | | | | | Resolves issue 437 Originally committed as revision 12977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 8 "initialization discards qualifiers from pointer target type"Michael Niedermayer2008-02-041-1/+1
| | | | | | warnings Originally committed as revision 11845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-211-6/+6
| | | | | | | 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
* Looks like this APE decoder support versions starting from 3.95Kostya Shishkov2007-09-231-1/+1
| | | | Originally committed as revision 10551 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud