Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-17lavf: use designated initialisers for all (de)muxers.Anton Khirnov
It's more readable and less prone to breakage.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-17lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-08avio: deprecate url_feofAnton Khirnov
AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-04avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-01lavf: replace all uses of url_fskip with avio_seekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-01avio: avio_ prefix for url_fseekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: avio_ prefixes for get_* functionsAnton Khirnov
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>
2011-02-20avio: rename ByteIOContext to AVIOContext.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-27Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
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.
2011-01-11electronicarts: prevent endless loop opportunity in ↵Peter Ross
process_audio_header_elements() Fixes issue2529. Originally committed as revision 26307 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-11revert r26302Peter Ross
Originally committed as revision 26305 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-10electronicarts: prevent endless loop opportunity in ↵Peter Ross
process_audio_header_elements() Fixes issue2529. Originally committed as revision 26302 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-10electronicarts: only apply audio sanity checks when audio stream is presentPeter Ross
Originally committed as revision 26301 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-10perform sanity check on sample rate in electronicarts demuxerDaniel Kang
Fixes issue2525 Original patch by Daniel Kang, daniel.d.kang at gmail Originally committed as revision 26298 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-10perform sanity check on number of channels in electronicarts demuxerDaniel Kang
Fixes issue2514 Original patch by Daniel Kang, daniel.d.kang at gmail Originally committed as revision 26296 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-11Add av_ prefix to bswap macrosMåns Rullgård
Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
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
2010-03-31Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas
Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-10Use enum CodecID where appropriate.Carl Eugen Hoyos
Originally committed as revision 21119 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-10do not create Electronic Arts audio stream when unsupported revision2 audio ↵Peter Ross
codec is present [issue1516] Originally committed as revision 21116 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-17Slightly improve probe for ea format by checking that it is possible toReimar Döffinger
guess whether the file is little- or big-endian. Originally committed as revision 19896 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-13Electronic Arts demuxer: support Madcow video tagPeter Ross
Originally committed as revision 19179 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-16Remove unused audio_pts field from ea demuxer structReimar Döffinger
Originally committed as revision 18538 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Move ea demuxer messages that are irrelevant to ordinary users fromReimar Döffinger
AV_LOG_INFO to AV_LOG_DEBUG. Originally committed as revision 18464 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-11ReindentReimar Döffinger
Originally committed as revision 18429 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-11Make electronicarts demuxer return partial frames, this is the defaultReimar Döffinger
behaviour of av_get_packet and should not be override without good reason. As a side effect this fixes the memleak described in issue 956. Also return the exact error code from av_get_packet instead of AVERROR(EIO). Originally committed as revision 18428 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-11Add av_uninit macro to variable to avoid false positive warning:Diego Biurrun
libavformat/electronicarts.c: In function ‘ea_read_packet’: libavformat/electronicarts.c:447: warning: ‘num_samples’ may be used uninitialized in this function Originally committed as revision 17157 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-05Electronic Arts demuxer: support TQI video tagPeter Ross
Originally committed as revision 17003 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
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
2009-01-12Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun
Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-08Electronic Arts demuxer: support TGQ video tagsPeter Ross
Originally committed as revision 15791 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni
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
2008-08-18Support Electronic Arts files containing MP3 audio.Peter Ross
Originally committed as revision 14824 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-12Electronic Arts demuxer: support SxEN audio tags found in 'Need for Speed: ↵Peter Ross
Pro Street' computer game. Originally committed as revision 14713 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-12Electronic Arts demuxer: perform identification of ADPCM EA R2 codec using ↵Peter Ross
revision2 flag. Originally committed as revision 14710 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-12Electronic Arts demuxer: ignore PTxx platform ID values.Peter Ross
Originally committed as revision 14709 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-12Support Electronic Arts files containing MPEG2VIDEO.Peter Ross
Originally committed as revision 14708 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-10Add MDEC tags to Electronic Arts demuxer.Peter Ross
Originally committed as revision 14679 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-06Add Electronic Arts TGV chunk tags to EA demuxer.Peter Ross
Originally committed as revision 14643 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-30EA Demuxer: make rev2 flag optionalPeter Ross
Originally committed as revision 14474 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-08Electronic Arts CMV demuxerPeter Ross
Originally committed as revision 14111 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-03Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini
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
2008-05-13Fix icc warning #188: enumerated type mixed with another typeCarl Eugen Hoyos
Originally committed as revision 13144 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-25add pcm_s16le_planar support for electronicarts filesAurelien Jacobs
Originally committed as revision 11092 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-21Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson
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
2007-11-08probe more kind of electronic arts filesAurelien Jacobs
Originally committed as revision 10947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-31EA IMA EACS decoderPeter Ross
original patch by Peter Ross Originally committed as revision 10880 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-31EA IMA SEAD decoderPeter Ross
original patch by Peter Ross Originally committed as revision 10879 to svn://svn.ffmpeg.org/ffmpeg/trunk