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-31Remove unused debug av_log() calls.Diego Biurrun
Originally committed as revision 19549 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-30remove unused hack which set AVCodecContext frame_number to pic timestampBaptiste Coudurier
Originally committed as revision 18988 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-11Add a chroma_sample_location field to define positioning of chroma samplesDavid Conrad
Originally committed as revision 18795 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-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-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-27Use ff_hwaccel_pixfmt_list_420[] in H.263 decoder.Gwenole Beauchesne
Patch by Gwenolé Beauchesne. Originally committed as revision 17645 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-27Add HW acceleration hooks for MPEG-4 / H.263 decoding.Gwenole Beauchesne
Patch by Gwenole Beauchesne. Originally committed as revision 17637 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-24add ff_find_hwaccel() by Gwenole BeauchesneMichael Niedermayer
Originally committed as revision 17569 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-24Another AVhwaccel hunk from Gwenole Beauchesne.Michael Niedermayer
Originally committed as revision 17565 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-24Add and use ff_pixfmt_list_420.Michael Niedermayer
Originally committed as revision 17564 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-24Approved hunk from the AVHWaccel patch by Gwenole Beauchesne.Gwenole Beauchesne
Originally committed as revision 17563 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-23More approved hunks for VAAPI & our new and cleaner hwaccel API.Gwenole Beauchesne
patch by Gwenole Beauchesne gbeauchesne splitted-desktop com Originally committed as revision 17540 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-11Initialize s->gob_index for Intel variant of H.263 tooKostya Shishkov
Originally committed as revision 17153 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-26Change "H.263 Intel" long name to "Intel H.263".Stefano Sabatini
Originally committed as revision 16808 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-25Make more descriptive the long names for the various variants of H.263.Stefano Sabatini
Originally committed as revision 16775 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 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-14replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_Aurelien Jacobs
and remove all ENABLE_ definitions. Originally committed as revision 16600 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-22Move CODEC_FLAG_LOW_DELAY into ff_mpeg4_decode_picture_header().Michael Niedermayer
Originally committed as revision 16255 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-03Remove duplicated MM_* macros for CPU capabilities from dsputil.h.Dominik Mierzejewski
Add missing one for FF_MM_ALTIVEC to avcodec.h. Rename all the occurences of MM_* to the corresponding FF_MM_*. Originally committed as revision 15770 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Rename error_resilience to error_recognition.Michael Niedermayer
Originally committed as revision 15270 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-24cosmetics: Fix two common typos: wont --> will not, lets --> let us.Diego Biurrun
Originally committed as revision 14372 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-29Remove leading whitespace in long codec name that was committed in r13017Robert Swain
Originally committed as revision 13018 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-29Add some long names to AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13017 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-04-17Xvid IDCTs are not under CONFIG_GPL, so don't require it when using them.Alexander Strange
Originally committed as revision 12880 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-10add FF_ prefix to all (frame)_TYPE usageAurelien Jacobs
Originally committed as revision 12399 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-05Avoid linking with h263 and mpeg4 find_frame_end()Aurelien Jacobs
when those codecs are not enabled. Originally committed as revision 12332 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constMichael Niedermayer
Originally committed as revision 11761 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-02spellingVitor Sessak
Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-10intrax8 decoder patch by "someone"Michael Niedermayer
Originally committed as revision 10971 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-13Workaround adjustments for DivX 6.1 and laterLord
patch by Lord: [ Lord_veryrandomD8 yahoo com ] Originally committed as revision 9300 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12misc spelling fixesDiego Biurrun
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-10disable reference to msmpeg4 and wmv2 code when those codecs are not compiled inAurelien Jacobs
Originally committed as revision 8975 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-10move ff_mpeg4_find_frame_end() from h263dec.c to mpeg4video_parser.cAurelien Jacobs
now h263dec depends on mpeg4video_parser this fixes compilation when h263 decoder is disabled Originally committed as revision 8962 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-08Move H.263 parser to its own file.Diego Biurrun
Originally committed as revision 8934 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-07make some parser parameters const to avoid casting const to non-constAurelien Jacobs
Originally committed as revision 8921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-08Corrections so that builds with DEBUG workMichel Bardiaux
Originally committed as revision 8295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-231/0 fixMichael Niedermayer
Originally committed as revision 7658 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-14revert bad checkinMåns Rullgård
Originally committed as revision 7044 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-14move some CFLAGS settings away from config.* writing sectionMåns Rullgård
Originally committed as revision 7043 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-07add codec_tag and codec_stream_tag to MpegEncContext to not alter avctx valuesBaptiste Coudurier
Originally committed as revision 6930 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-02Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme
patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 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-10-0410l in r6412Loren Merritt
Originally committed as revision 6547 to svn://svn.ffmpeg.org/ffmpeg/trunk