Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-05dv: fix comment wording mistakeClément Bœsch
2011-07-05dv: fix valgrind use of uninitialised value warnings.Reimar Döffinger
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-07-05dv: fix comment spellingClément Bœsch
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-07Replace some av_log/printf + #ifdef combinations by av_dlog.Diego Biurrun
2011-06-03Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().Stefano Sabatini
This fixes warnings about avcodec_get_pix_fmt_name() being deprecated. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-05-02Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-04-22Introduce slice threads flag.Ronald S. Bultje
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-04-17Replace more FFmpeg references by Libav.Diego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-09-28In dv decoder, set sample aspect aspect ratio, fix issue #1612Baptiste Coudurier
Originally committed as revision 25232 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-20dv: fix alignment of scratch bufferMåns Rullgård
Originally committed as revision 24854 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-08Add new decoder property max_lowres and do not init decoder if requested ↵Carl Eugen Hoyos
value is higher. Originally committed as revision 24098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-30Fix indentation.Reimar Döffinger
Originally committed as revision 22721 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-21Add support for hard-coding the 256kB large dv_vlc_map table.Reimar Döffinger
Originally committed as revision 22622 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-21Split VLC-related tables out of dvdata.h to make it easier to add supportReimar Döffinger
for hard-coding tables. Originally committed as revision 22620 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-17Use LOCAL_ALIGNED macro for local arraysMåns Rullgård
Originally committed as revision 21866 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-22Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård
Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-12Align mb_bit_buffer and vs_bit_buffer as their alignment is checked by assert().Michael Niedermayer
Originally committed as revision 21164 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-12Fail earlier for unsupported resolutions or pixel formats when encodingTomas Härdin
dv. Patch by Tomas Härdin, tomas D hardin A codemill D se Originally committed as revision 20803 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-10Make get_bits_left() available for use in libavcodec (was previously heldRonald S. Bultje
private in dv.c for some reason). See "[PATCH] get_bits_left()" thread. Originally committed as revision 20490 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-16Split parts of dvdata.h into dvdata.c, this ensures that things likeReimar Döffinger
work_chunks_* and dv_idct_factor_* variables appear only once in the binary instead of 3 times. Saves 3264 bytes in .rodata and 312416 bytes in .bss on x86_64. Originally committed as revision 20246 to svn://svn.ffmpeg.org/ffmpeg/trunk
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