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-09-29Use context instead of NULL for logging.Reimar Döffinger
Originally committed as revision 20085 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Make sure that dv encoder initializes all encoded packet data.Reimar Döffinger
The specification does not say which value to use for unused parts, so fill all unused bytes with 0xff, which is consistent with what DV usually uses for reserved or unused parts. Originally committed as revision 20084 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Mark all pix_fmts and supported_framerates compound literals as const.Reimar Döffinger
Makes no difference for gcc but at least icc can put them in .rodata then. Originally committed as revision 19789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-26Remove some unnecessary alignment specifiersMåns Rullgård
None of these arrays are used in ways requiring extra alignment. Originally committed as revision 19715 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-15print error when dv frame profile cannot be foundBaptiste Coudurier
Originally committed as revision 19193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-15check if frame size matches old sys and assumes corrupted input, fixes #1192Baptiste Coudurier
Originally committed as revision 19192 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31remove cast and use put_sbits, fix assertion in put_bitsBaptiste Coudurier
Originally committed as revision 19024 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-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini
put_bits.h. Originally committed as revision 18461 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-20Fixing a value returning issueRoman Shaposhnik
Originally committed as revision 17469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-19transitioning dv_guess_dct_mode to dsputil cmp functionRoman Shaposhnik
Originally committed as revision 17449 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-17cosmetics: 'const static' --> 'static const' to avoid warnings of the typeDiego Biurrun
"'static' is not at beginning of declaration" with -Wextra. Originally committed as revision 17391 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-04No need to compute stypeRoman Shaposhnik
Originally committed as revision 16988 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-02-01remove some warnings due to avctx->executeBaptiste Coudurier
Originally committed as revision 16909 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01assume widescreen when ratio also > 17, patch by Ben Hutchings, ben at ↵Ben Hutchings
decadent dot org dot uk Originally committed as revision 16907 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31Cosmetics: fixing indentationRoman Shaposhnik
Originally committed as revision 16880 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31unrolling encoding loopsRoman Shaposhnik
Originally committed as revision 16879 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31Cosmetics: simplifying static initializationRoman Shaposhnik
Originally committed as revision 16878 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31simplifying DIF encoding processRoman Shaposhnik
Originally committed as revision 16877 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31Cosmetics: fixing the indentationRoman Shaposhnik
Originally committed as revision 16876 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31factoring code into dv_init_enc_blockRoman Shaposhnik
Originally committed as revision 16875 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31Cosmetics: replacing 0 with NULL for pointer assignmentRoman Shaposhnik
Originally committed as revision 16874 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31Cosmetics: moving the function definition aroundRoman Shaposhnik
Originally committed as revision 16873 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-31Replacing the constant with a macroRoman Shaposhnik
Originally committed as revision 16872 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-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-11-20Making idct factor tables dynamically allocatedRoman Shaposhnik
Originally committed as revision 15885 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-19Change of indentationRoman Shaposhnik
Originally committed as revision 15883 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-18Getting rid of huge static DV tablesRoman Shaposhnik
Originally committed as revision 15874 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-18Getting rid of unneeded extra wrapper functionsRoman Shaposhnik
Originally committed as revision 15873 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-13Taking advantage of the new ->execute APIRoman Shaposhnik
Originally committed as revision 15806 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-12Making it easier to send arbitrary structures as work orders to MT workersRoman Shaposhnik
Originally committed as revision 15804 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-08implementing more efficient (and direct) allocation of work for DV codec workersRoman Shaposhnik
Originally committed as revision 15788 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-30renaming macro in order to conform with the rest of libavcodecRoman Shaposhnik
Originally committed as revision 15751 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25prettyprinting cosmeticsDiego Biurrun
Originally committed as revision 15682 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25spelling cosmeticsDiego Biurrun
Originally committed as revision 15681 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07replacing frame_rate and frame_rate_base with an AVRational time_baseRoman Shaposhnik
Originally committed as revision 15584 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07unrolling the loops as per Michael's suggestionRoman Shaposhnik
Originally committed as revision 15580 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07fixing a bug that prevented proper unweighting table to be selectedRoman Shaposhnik
Originally committed as revision 15579 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07Doxygenizing the commentsRoman Shaposhnik
Originally committed as revision 15578 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07simplifying the code as per Michael's suggestionRoman Shaposhnik
Originally committed as revision 15577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-02spelling cosmeticsDiego Biurrun
Originally committed as revision 15518 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-03Replace generic CONFIG_DECODERS preprocessor conditionals by more specificDiego Biurrun
CONFIG_FOO_DECODER conditionals where appropriate. Originally committed as revision 15162 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-29Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer asRoman Shaposhnik
specified in SMPTE 370M Originally committed as revision 15010 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-28Cosmetic change aimed at making it easier to see how bits are consumedRoman Shaposhnik
Originally committed as revision 14998 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-28Factoring out chan_slice / 27 into seq variableRoman Shaposhnik
Originally committed as revision 14997 to svn://svn.ffmpeg.org/ffmpeg/trunk