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-07-23Remove useless #include <unistd.h> from many filesMåns Rullgård
Originally committed as revision 19499 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Simplify ipvideo_decode_opcodes by using get_bits, this might be slowerReimar Döffinger
but is not performance-critical anyway. Originally committed as revision 18593 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Remove unused code_counts array from interplavideo.c.Reimar Döffinger
Originally committed as revision 18592 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-04-01Fix ipvideo_decode_block_opcode_0xD again.Reimar Döffinger
Originally committed as revision 18289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Cosmetics: remove some pointless {}Reimar Döffinger
Originally committed as revision 18284 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Slightly simplify ipvideo_decode_block_opcode_0xDReimar Döffinger
Originally committed as revision 18283 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31One more simplification for ipvideo_decode_block_opcode_0xAReimar Döffinger
Originally committed as revision 18282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Slightly simplify first part of ipvideo_decode_block_opcode_0xA,Reimar Döffinger
hopefully allows for further simplifications in the future. Originally committed as revision 18280 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Make ipvideo_decode_block_opcode_0x8 a lot simpler by decoding the pixelsReimar Döffinger
in a more natural order. Originally committed as revision 18277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Fix a too small CHECK_STREAM_PTR value in interplayvideo.cReimar Döffinger
Originally committed as revision 18276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Avoid the last two uses of bitmasks in interplayvideoReimar Döffinger
Originally committed as revision 18272 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31100l, fix FATE test broken by r18264Reimar Döffinger
Originally committed as revision 18271 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31ReindentReimar Döffinger
Originally committed as revision 18270 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Deduplicate code by moving it outside the if/elseReimar Döffinger
Originally committed as revision 18269 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Rearrange how the different cases are checked to reduce the number ofReimar Döffinger
comparisons and allow further simplifications. Originally committed as revision 18268 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Avoid "reloading" code by using a 64 bit type for the flags and loading all ↵Reimar Döffinger
at once. Originally committed as revision 18266 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Remove now pointless temporary pix variables.Reimar Döffinger
Originally committed as revision 18265 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Slightly simplify part of ipvideo_decode_block_opcode_0x8Reimar Döffinger
Originally committed as revision 18264 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Fix indentationReimar Döffinger
Originally committed as revision 18263 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Avoid code duplication by using ?: and array indexing instead of if..elseReimar Döffinger
Originally committed as revision 18262 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Prettify some assignmentsReimar Döffinger
Originally committed as revision 18261 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-31Get rid of some pointless bitmask/shifter variables in interplayvideo.cReimar Döffinger
Originally committed as revision 18260 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Merge the 3 COPY_FROM_* macros with lots of duplicated code into a singleReimar Döffinger
copy_from function. Originally committed as revision 18225 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Change CHECK_STREAM_PTR macro to correctly handle the (extremely unlikely)Reimar Döffinger
overflow case. Originally committed as revision 18224 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Simplify check for leftover bytes after decoding for interplayvideo.Reimar Döffinger
Originally committed as revision 18223 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Get rid of pointless "B" array in interplayvideo decoder.Reimar Döffinger
Originally committed as revision 18222 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Replace many tiny loops in the interplayvideo decoder by memset, memcpyReimar Döffinger
or initializers. Originally committed as revision 18221 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Make ipvideo_decode_block array constant, compile-time initialized insteadReimar Döffinger
of initializing it each time the decoder is initialized. Originally committed as revision 18219 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-04100l, interplayvideo uses 8x8 blocks, so call the 8x8 put_pixels_tab functionReimar Döffinger
instead of the 16x16 one. Seems to fix decoding on PPC. Originally committed as revision 17808 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-02Change a bunch of codec long_names to be more consistent and descriptive.Diego Biurrun
Originally committed as revision 17716 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
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-27Add long names to many AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 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-10There is no reason to assign a variable to itselfMike Melanson
Originally committed as revision 12405 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constsMichael Niedermayer
I have underestimated this a little, and these are just some ... Originally committed as revision 11708 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05license header consistency cosmeticsDiego Biurrun
Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-02Use AV_xx throughout libavcodecRamiro Polla
Originally committed as revision 9169 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-10Remove redundant #inclusion of common.h, avcodec.h already #includes it.Diego Biurrun
Originally committed as revision 8967 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-07Remove superfluous setting of has_b_frames in codecs without B-frames.Nicholas Tung
patch by Nicholas Tung, ntung ntung com Originally committed as revision 8647 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-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-12use PRIxN, %zd, %td formats where neededMåns Rullgård
Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-02-2110lAlex Beregszaszi
Originally committed as revision 3967 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
2004-01-31handle invalid buffer sizesMike Melanson
Originally committed as revision 2734 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-11-03av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux
Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-10-30revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)Mike Melanson
Originally committed as revision 2451 to svn://svn.ffmpeg.org/ffmpeg/trunk