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 (Expand)Author
2013-11-24Add missing #includes for *INT64_MAX and *INT64_CDiego Biurrun
2013-11-16iff: use the AVFrame API properly.Anton Khirnov
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-07-10iff: Do not read over the source bufferLuca Barbato
2013-07-10iff: K&R formatting cosmeticsLuca Barbato
2013-03-08lavc decoders: properly initialize AVFrame.Anton Khirnov
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-01-26iff: drop ff_ prefix from a static function.Anton Khirnov
2012-12-05lavc: fix decode_frame() third parameter semantics for video decodersAnton Khirnov
2012-12-05lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-04-06cosmetics: Align codec declarationsMartin Storsjö
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
2011-02-15Merge libavcore into libavutilReinhard Tartler
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
2011-01-26Make ff_cmap_read_palette static to libavcodec/iff.c. Delete iff.h.Diego Elio Pettenò
2010-09-07Use new imgutils.h API names, fix deprecation warnings.Stefano Sabatini
2010-08-06Remove use of the deprecated function avcodec_check_dimensions(), useStefano Sabatini
2010-07-11bswap: change ME to NE in macro namesMåns Rullgård
2010-06-30Fix grammar errors in documentationMåns Rullgård
2010-06-22IFF PBM decoder: Add a pad byte if image width is odd <aleksi dot nurmi at gm...Peter Ross
2010-06-01Move get_buffer() calls from decode_init() to decode_frame(). Anything else isSebastian Vater
2010-05-17Factorize code into a single function.Sebastian Vater
2010-05-13Reindent after r23124. Patch by Sebastian Vater <cdgs basty googlemail com>.Sebastian Vater
2010-05-13Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.Sebastian Vater
2010-05-13Reindent after r23112.Sebastian Vater
2010-05-13Move handling of paletted data to the IFF demuxer. This allows futureSebastian Vater
2010-05-13Handle palette underflows, fill remaining space with black (zero) data.Sebastian Vater
2010-05-13Move a while(..){..} -> do{..}while(..), slightly faster.Sebastian Vater
2010-05-10Optimize decodeplane32().Sebastian Vater
2010-05-10Ensure that width and height are > 0. avcodec_open() itself only checks thatSebastian Vater
2010-05-10Remove "bps" parameter to decodeplane8/32(), it's unused.Sebastian Vater
2010-05-09IFF: decode last 8 pixels per lineMåns Rullgård
2010-05-09Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.Sebastian Vater
2010-05-05Align plane size to word-boundary.Sebastian Vater
2010-05-04Revert r22974 int->unsigned parts that don't have any meaningful effect.Ronald S. Bultje
2010-04-27Reidnent after r22795.Sebastian Vater
2010-04-27Move some branches outside looped code. Should improve the generated asm (andSebastian Vater
2010-04-27Switch some ints to unsigned (they can only have positive values, this allowsSebastian Vater
2010-04-27Make two functions out of #define hackery.Sebastian Vater
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
2010-03-13Make iff.c:decode_init return the value returned byStefano Sabatini
2010-03-08IFF: move ff_cmap_read_palette() prototype to a header fileMåns Rullgård
2010-03-03use intended const syntaxPeter Ross
2010-02-16Support <8-bit ILBM uncompressed bitmapsPeter Ross
2010-02-15IFF bitmap n-bit color supportPeter Ross
2010-02-12Use int8_t instead of char, the signedness of char can differ between systems.Reimar Döffinger