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-01-28Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d36beb3f6902b1217beda576aa18abf7eb72b03c)
2011-01-17Allocate last picture for 4xm pfrm if its not allocated.Michael Niedermayer
Fixes segfault and issue2527 Originally committed as revision 26397 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-12Fix visual artifacts in 4XM decoding on big-endian systemVitor Sessak
Originally committed as revision 25734 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-07-11bswap: change ME to NE in macro namesMåns Rullgård
Other parts of FFmpeg use NE (native endian) rather than ME (machine). This makes it consistent. Originally committed as revision 24169 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-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-03-06Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård
These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead. Originally committed as revision 22233 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-22Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård
Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Fix red/blue swap for 4xa files.Carl Eugen Hoyos
Originally committed as revision 21070 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-13Add missing release_buffer on closeReimar Döffinger
Originally committed as revision 20227 to svn://svn.ffmpeg.org/ffmpeg/trunk
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