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-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 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-09VP3: Do not ignore error from read_huffman_tree().Alex Converse
Originally committed as revision 17090 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-04VP3: Prevent stack corruption from an unset custom coding method.Alex Converse
Originally committed as revision 16978 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-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-11clear_block mmxLoren Merritt
Originally committed as revision 16045 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-17MMX VP3 Loop FilterDavid Conrad
Originally committed as revision 15630 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-12Remove unused variablesDavid Conrad
Originally committed as revision 15602 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-04Move VP3 loop filter to DSPContextDavid Conrad
Originally committed as revision 15551 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-01Cosmetics: reindentDavid Conrad
Originally committed as revision 15505 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-01Unneeded elseDavid Conrad
Originally committed as revision 15504 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-01Unneeded bracesDavid Conrad
Originally committed as revision 15503 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-01Return if unpacking motion vectors for a keyframeDavid Conrad
Originally committed as revision 15502 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-01Cosmetics: indentationDavid Conrad
Originally committed as revision 15501 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-01Visible width/height fields were added in Theora 3.2David Conrad
Originally committed as revision 15500 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-01filter_limit_values only needs 7 bits, make its tables smallerDavid Conrad
Originally committed as revision 15499 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-30Cosmetics: indentationDavid Conrad
Originally committed as revision 15492 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-30Merge (vp3|theora)_calculate_pixel_addressesDavid Conrad
Originally committed as revision 15491 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-30Missed hunks of last commitDavid Conrad
Originally committed as revision 15490 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-30Remove unused vp3 debugging infoDavid Conrad
Originally committed as revision 15489 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-30Downgrade severity of leftover bits in header packets, and don't check for ↵David Conrad
the comment header Originally committed as revision 15469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-30Use skip_frame for keyframe-only decoding rather than #ifdefDavid Conrad
Originally committed as revision 15463 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-17Take idct permutation into account when initializing dequantization matricesDavid Conrad
Originally committed as revision 15344 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-03theoradec: cosmetics: indentationAurelien Jacobs
Originally committed as revision 15167 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-03theoradec: skip decoding of uncoded MV in 4MV codeAurelien Jacobs
Thusnelda, the new experimental Theora encoder is using this Theora feature that was previously not exploited. fixes issue579 Originally committed as revision 15166 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-03theoradec: small 4MV code reorganization to ease future improvementsAurelien Jacobs
no functional changes Originally committed as revision 15165 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25make ModeAlphabet read-only and use a custom mode alphabetStefan Gehrer
only locally in unpack_modes() Originally committed as revision 13964 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-06-09Remove the START_TIMER/STOP_TIMER from vp3.c, they clutter the output andReimar Döffinger
might cost CPU. Originally committed as revision 13730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-09Almost-cosmetics: split out coeff_count from all_fragments struct intoReimar Döffinger
a separate array. For the OGG version at http://www.bigbuckbunny.org/index.php/download/ this results in about 50% speedup of unpack_vlcs, resulting in ca. 20% faster overall speed. Originally committed as revision 13729 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27consistency cosmetics: indices --> indexesDiego Biurrun
Originally committed as revision 13444 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-04Add complete multimedia Wiki URL, patch by Sisir Koppaka.Sisir Koppaka
Originally committed as revision 13055 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-05remove #include "mpegvideo.h" where it is not neededAurelien Jacobs
Originally committed as revision 12321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-24fix memory leaks in vp3 decoderMåns Rullgård
Originally committed as revision 12191 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Fix ;;Michael Niedermayer
Originally committed as revision 12153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-13typo fix: inited --> initializedDiego Biurrun
Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-13Print Theora bitstream version at DEBUG, not at VERBOSE level.Diego Biurrun
Originally committed as revision 11916 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constMichael Niedermayer
Originally committed as revision 11776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09use get_bits1(..) instead get_bits(.., 1)Alex Beregszaszi
Originally committed as revision 9999 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-03Reduce Theora decoder verbosity.Diego Biurrun
Originally committed as revision 9872 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-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-05-07cosmetics: fix inconsistent indentationAurelien Jacobs
Originally committed as revision 8929 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-07fix display of theora videos with visible size smaller than encoded sizeAurelien Jacobs
Originally committed as revision 8928 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-08Only compile in Theora-specific functions if the Theora decoder has beenDiego Biurrun
enabled. Also fixes some "defined but not used" warnings in that case. Originally committed as revision 8685 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-08cosmetics: Move one code block to save an #ifdef in the next commit.Diego Biurrun
Originally committed as revision 8684 to svn://svn.ffmpeg.org/ffmpeg/trunk