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-10-12AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov
2011-08-31snow: add 'memc_only' private option.Anton Khirnov
Deprecate CODEC_FLAG2_MEMC_ONLY
2011-08-26doxygen: fix wrong comment syntax, //< vs. ///<Diego Biurrun
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-20Remove snow/dwt test programMans Rullgard
This test program so full of programming errors it is impossible to make sense of it. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-11Eliminate FF_COMMON_FRAME macro.Diego Biurrun
FF_COMMON_FRAME holds the contents of the AVFrame structure and is also copied to struct Picture. Replace by an embedded AVFrame structure in struct Picture.
2011-07-04Do not include mathematics.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03snow: Remove unused code.Diego Biurrun
2011-06-144:4:4 H.264 decoding supportJason Garrett-Glaser
Note: this is 4:4:4 from the 2007 spec revision, not the previous (now deprecated) 4:4:4 mode in H.264.
2011-06-14Roll back 4:4:4 H.264 for nowJason Garrett-Glaser
Needs some ARM/PPC asm modifications.
2011-06-134:4:4 H.264 decoding supportJason Garrett-Glaser
Note: this is 4:4:4 from the 2007 spec revision, not the previous (now deprecated) 4:4:4 mode in H.264.
2011-05-02Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-04-26Eliminate pointless '#if 1' statements without matching '#else'.Diego Biurrun
2011-03-27dsputil: allow to skip drawing of top/bottom edges.Alexander Strange
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-29Move ff_emulated_edge_mc() into DSPContext.Ronald S. Bultje
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-06-24snow: remove unused parameter to mc_block()Måns Rullgård
Originally committed as revision 23746 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-14Add ff_ prefix to dwt functionsMåns Rullgård
Originally committed as revision 22523 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-14Separate DWT from snow and dsputilMåns Rullgård
This moves the DWT functions from snow.c and dsputil.c to a file of their own. A new struct, DWTContext, holds the function pointers previously part of DSPContext. Originally committed as revision 22522 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Move ff_sqrt() to libavutil/intmath.hMåns Rullgård
Originally committed as revision 22345 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Add some missing #includesMåns Rullgård
Originally committed as revision 22258 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-11Optimize ff_snow_horizontal_compose97i.Michael Niedermayer
this makes the 9/7 C wavelet at the decoder side 22% faster. The old code is changed to match the new in terms of the order of operations (which also makes it sligtly faster) Originally committed as revision 21132 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-11Merge vertical_compose53iL0*()Michael Niedermayer
8% faster C 5/3 wavelet at the decoder side. Originally committed as revision 21131 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-11Optimize horizontal_compose53i() by inlining inv_lift() and optimizing theMichael Niedermayer
resulting code slightly. ~30% faster C 5/3 wavelet at the decoder side. Originally committed as revision 21130 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Snow : re-indent after r21093.Jai Menon
Originally committed as revision 21094 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Snow : remove pointless 'if(1)'.Jai Menon
Originally committed as revision 21093 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Snow : use non-NULL context for av_log.Jai Menon
Originally committed as revision 21089 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Cosmetics : remove duplicated comment.Jai Menon
Originally committed as revision 21088 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-08Snow : release buffers allocated using avctx->get_buffer.Jai Menon
Originally committed as revision 21084 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-02Fix 1 pass RC in snow.Michael Niedermayer
Fixes issue547. Originally committed as revision 20706 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-18Reorder functions so that encoding functions are disabled by the preprocessor.Diego Biurrun
Fixes compilation with disabled optimizations and enabled Snow decoder. Originally committed as revision 19914 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-05snow decoder uses get_buffer, set CODEC_CAP_DR1Baptiste Coudurier
Originally committed as revision 19104 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-08Correct x/ymin to avoid segfault due to out of picture reads.Michael Niedermayer
Originally committed as revision 18771 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Optimize sign handling in get_symbol().Michael Niedermayer
Originally committed as revision 18672 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Remove 2 useless FFMIN().Michael Niedermayer
Originally committed as revision 18664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Remove apparently redundant code.Michael Niedermayer
Originally committed as revision 18663 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Fix indention, patch by Lars Täuber.Lars Täuber
Originally committed as revision 18594 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Remove unused variable from slice_buffer_release() found by CSA.Michael Niedermayer
Originally committed as revision 18570 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Remove unused variables from slice_buffer_load_line() found by CSA.Michael Niedermayer
Originally committed as revision 18561 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-10cosmetics: Rename prn variable to prng (Pseudo Random Number Generator).Diego Biurrun
Originally committed as revision 18422 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-10Make sure the next used frame is released so get_buffer() wont fail.Michael Niedermayer
Originally committed as revision 18399 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-10Move release_buffer() up so it is prior to a future call to it.Michael Niedermayer
Originally committed as revision 18398 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-10Factorize release_buffer()Michael Niedermayer
Originally committed as revision 18397 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-10Make sure spatial_decomposition_count is not too large for picture size.Michael Niedermayer
this led to an infinite loop in mirror(). Originally committed as revision 18396 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-10Skip non intra frames that have no reference frames.Michael Niedermayer
Originally committed as revision 18395 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-09Make sure spatial_decomposition_count is >0.Michael Niedermayer
Originally committed as revision 18394 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-09Make sure the block array is of the correct size.Michael Niedermayer
This might have been exploitable. Originally committed as revision 18393 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-09Check spatial_decomposition_count too, fixes another crash.Michael Niedermayer
Originally committed as revision 18392 to svn://svn.ffmpeg.org/ffmpeg/trunk