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
2009-08-264xm: provide 16-byte alignment where requiredMåns Rullgård
Originally committed as revision 19717 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-054xm decoder uses get_buffer, set CODEC_CAP_DR1Baptiste Coudurier
Originally committed as revision 19091 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Add a av_fast_malloc function and replace several uses of av_fast_realloc,Reimar Döffinger
thus avoiding potential memleaks and pointless memcpys. Originally committed as revision 18470 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Use void * instead of uint8_t * for the destination buffer for dsp.bswap_bufReimar Döffinger
where easily possible (mimic, eatqi, 4xm). This allows to avoid a typecast. Originally committed as revision 18469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-11Get rid of INIT_VLC_USE_STATIC in 4xm.Michael Niedermayer
Originally committed as revision 18435 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-11Use INIT_VLC_USE_STATIC and not its value "1".Carl Eugen Hoyos
Originally committed as revision 18430 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
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
2009-02-22Add missing av_cold in static init/close functions.Daniel Verkamp
Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 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-17remove ff_get_fourcc() and use AV_RL32() insteadAurelien Jacobs
Originally committed as revision 16654 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-06-13Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-28Add long names to some AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13010 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-22cosmetics: typo fixesDiego Biurrun
Originally committed as revision 12554 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-05remove more useless mpegvideo.h includesAurelien Jacobs
Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01Replace get32() by AV_RL32().Michael Niedermayer
Originally committed as revision 11755 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constMichael Niedermayer
Originally committed as revision 11754 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-31cast to dest type, fix warning: 4xm.c:304: warning: initialization from ↵Baptiste Coudurier
incompatible pointer type Originally committed as revision 11676 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05fix decoding of dracula.4xm before diego complainsMichael Niedermayer
Originally committed as revision 10393 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05fix segfault with dracula.4xmMichael Niedermayer
closes issue132 Originally committed as revision 10392 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-28Change 4xm demuxer and video decoder to pass the video format version inRoberto Togni
extradata instead of codec_tag. Originally committed as revision 10253 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13use bytestream_get_le*() this also fixes a big endian bugMichael Niedermayer
Originally committed as revision 10104 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13fix type 3 aka skipped blocks for old versionMichael Niedermayer
Originally committed as revision 10097 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13fix motion vectors for old versionMichael Niedermayer
Originally committed as revision 10096 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13set pix_fmt properly depending on versionMichael Niedermayer
Originally committed as revision 10095 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13use version instead of some random 32bit value to switch between 16 andMichael Niedermayer
32bit versions (this is more reliable, the old code failed on some files) Originally committed as revision 10094 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13replace vlc_type by version and set that from codec_tag which contains theMichael Niedermayer
4xm video version from the demuxer Originally committed as revision 10093 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12support ifr2 from Toy-Story2_better-image-quality.4xaMichael Niedermayer
Originally committed as revision 10091 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12add second vlc tableMichael Niedermayer
pfr* of Toy-Story2_better-image-quality.4xa are decoded now without bitstream errors Originally committed as revision 10089 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-30rename attribute_unused to av_unused and moves its declaration to common.hCarl Eugen Hoyos
patch by Carl Eugen Hoyos cehoyos chez ag or at original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused date: 05/29/2007 01:23 PM Originally committed as revision 9155 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-14Change some leftover __attribute__((unused)) and __attribute__((used)) toReimar Döffinger
attribute_unused and attribute_used respectively to ease compiling on non-gcc. Originally committed as revision 9024 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-19Remove some old disabled debugging outputMichel Bardiaux
Originally committed as revision 8027 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-27fix some signedness warningsMåns Rullgård
Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-05-13sanity checks, some might have been exploitable ...Michael Niedermayer
Originally committed as revision 5369 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-02-05MSVC-compatible __align8/__align16 declarationSteve L'Homme
patch by Steve Lhomme, steve .dot. lhomme .at. free .dot. fr Originally committed as revision 4942 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-26warning fixes by Luca Abeni, lucabe72 ##@## email ##.## itDiego Biurrun
Originally committed as revision 4898 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-12use PRIxN, %zd, %td formats where neededMåns Rullgård
Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-04-24Ministry of English Composition, reporting for duty (and the word is ↵Mike Melanson
"skipped", not "skiped"; "skiped" would rhyme with "hyped") Originally committed as revision 4153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-01-23avoid buf_size == 0 checks in every decoderMichael Niedermayer
Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-01-12various security fixes and precautionary checksMichael Niedermayer
Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-11-27Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( ↵Burkhard Plaum
de>) Originally committed as revision 3717 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-05-21data_size = 0 cleanupMichael Niedermayer
Originally committed as revision 3146 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-04-30cleanup & memleak fixMichael Niedermayer
Originally committed as revision 3095 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-04-07unknown format charsAlex Beregszaszi
Originally committed as revision 2974 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-03-25warning patrolFalk Hüffner
Originally committed as revision 2925 to svn://svn.ffmpeg.org/ffmpeg/trunk