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 (Expand)Author
2011-02-04Separate format conversion DSP functions from DSPContext.Justin Ruggles
2011-02-02Remove unneeded add bias from 3 functions.Justin Ruggles
2011-01-30Move ff_emulated_edge_mc() into DSPContext.Ronald S. Bultje
2011-01-30Make ff_float_to_int16*_c() static.Alex Converse
2011-01-28Remove the add bias hack for the C version of DSPContext.float_to_int16_*().Justin Ruggles
2011-01-23Change DSPContext.vector_fmul() from dst=dst*src to dest=src0*src1.Justin Ruggles
2011-01-23Make LOCAL_ALIGNED macro fully C99 compatibleMans Rullgard
2011-01-23Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext.Justin Ruggles
2011-01-21Revert 2a1f431d38ea9c05abb215d70c7dc09cdb6888ab, it broke H264 lossless.Ronald S. Bultje
2011-01-15H.264/SVQ3: make chroma DC work the same way as luma DCJason Garrett-Glaser
2011-01-15Port SVQ3 to use the new mb_luma_dc method of storing luma DC coefficients.Jason Garrett-Glaser
2011-01-15Fix SVQ3Jason Garrett-Glaser
2011-01-15H.264: split luma dc idct out and implement MMX/SSE2 versionsJason Garrett-Glaser
2010-09-08Move mm_support() from libavcodec to libavutil, make it a publicStefano Sabatini
2010-09-08Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,Stefano Sabatini
2010-08-26Remove duplicate definitions of fullpel MC functionsMåns Rullgård
2010-08-25Move vp6_filter_diag4() from DSPContext to VP56DSPContext.Ronald S. Bultje
2010-08-24Remove global mm_flags variableMåns Rullgård
2010-08-04Move cavs dsp functions to their own structMåns Rullgård
2010-06-27Add const to some pointer parameters.Eli Friedman
2010-05-27Add const to ff_emulated_edge_mcDavid Conrad
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
2010-04-17vp3: DC-only IDCTDavid Conrad
2010-03-16Move H264 dsputil functions into their own structMåns Rullgård
2010-03-14Separate DWT from snow and dsputilMåns Rullgård
2010-03-07Move some dsp func prototypes to dsputil.h; they are defined in dsputil.cMåns Rullgård
2010-03-07Move some VC1 dsp prototypes to dsputil.h; they are defined in dsputil.cMåns Rullgård
2010-03-07Move prototypes for various dsputil init functions to dsputil.hMåns Rullgård
2010-03-06Move FFT parts from dsputil.h to fft.hMåns Rullgård
2010-03-06Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård
2010-03-06Move DECLARE_ALIGNED_{8,16} macros to mem.hMåns Rullgård
2010-02-21Bink video decoderKostya Shishkov
2010-02-1810l: remove stray '(' I don't know where it came fromMåns Rullgård
2010-02-17Add LOCAL_ALIGNED() macro for declaring aligned local arraysMåns Rullgård
2010-01-22Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård
2010-01-20Floating point discrete cosine transformVitor Sessak
2010-01-14Implement alpha channel decoding for BGR HuffYUV.Alexander Strange
2010-01-09Add support for hard-coded MDCT-related ff_sine_windows tables.Reimar Döffinger
2009-12-05refactor and optimize scalarproductLoren Merritt
2009-11-05Add ff_init_ff_cos_tabs function and use it in rdft.c to ensure that theReimar Döffinger
2009-11-04Pad ff_cos_tabs and ff_sin_tabs so that index n points to the table for n bits.Reimar Döffinger
2009-10-19huffyuv: add some const qualifiersLoren Merritt
2009-10-19simd add_hfyu_left_predictionLoren Merritt
2009-10-18Move autocorrelation function from flacenc.c to lpc.c. Also rename theJustin Ruggles
2009-10-17Huffyuv: Add missing const to src pointers in dsputil functions.Alexander Strange
2009-10-15Add support for hardcoded ff_sin_* tables.Reimar Döffinger
2009-10-15Move/add COSTABLE/SINTABLE macros to dsputil to add extern definitionsReimar Döffinger
2009-10-15Do not initialize ff_cos_* tables again in rdft_init, they are alreadyReimar Döffinger
2009-10-15Use hardcoded instead of runtime-calculated ff_cos_* tables ifReimar Döffinger
2009-10-06Move HuffYUV left prediction to dsputil.Nathan Caldwell