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
2012-06-11Optimization of AMR NB and WB decoders for MIPSNedeljko Babic
AMR NB and WB decoders are optimized for MIPS architecture. Appropriate Makefiles are changed accordingly. Cnfigure script is changed in order to support optimizations. Optimizations are enabled by default when compiling is done for mips architecture. Appropriate cflags are automatically set. Support for several mips CPUs is added in configure script. New ffmpeg options are added for disabling optimizations. The FFMPEG option --disable-mipsfpu disables MIPS floating point optimizations. The FFMPEG option --disable-mips32r2 disables MIPS32R2 optimizations. The FFMPEG option --disable-mipsdspr1 disables MIPS DSP ASE R1 optimizations. The FFMPEG option --disable-mipsdspr2 disables MIPS DSP ASE R2 optimizations. Signed-off-by: Nedeljko Babic <nbabic@mips.com> Reviewed-by: Vitor Sessak <vitor1001@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-05Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: tests: Refactor rotozoom/videogen common code into a separate file. tests: Mark some file-internal symbols as static. build: Drop leftover .exp pattern from LIBSUFFIXES list. vsrc_buffer: return EAGAIN if no frame is available. WMAL: Shift output samples by the specified number of padding zeroes. WMAL: Restore removed code in mclms_predict() rtpdec_h264: Remove a useless ifdef rtpdec_h264: Remove outdated/useless/incorrect comments rtpdec_h264: Remove useless memory corruption checks rtpdec_h264: Return proper error codes rtpdec_h264: Check the available data length before reading rtpdec_h264: Add input size checks png: check bit depth for PAL8/Y400A pixel formats. ea: check chunk_size for validity. celp filters: Do not read earlier than the start of the 'out' vector. Conflicts: libavcodec/pngdec.c libavfilter/src_buffer.c tests/rotozoom.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-04celp filters: Do not read earlier than the start of the 'out' vector.Alex Converse
CC: libav-stable@libav.org
2011-09-29Add a shift parameter to celp_lp_synthesis_filter for reuse by the G.723.1 ↵Mohamed Naufal Basheer
decoder
2011-06-02Remove unused variablesMans Rullgard
2011-05-30Fix various unused variable warningsClément Bœsch
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-03-01Fix spelling in commentVitor Sessak
Originally committed as revision 22137 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-01Add commented-out unoptimized code to improve readabilityVitor Sessak
Originally committed as revision 22136 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-16Cosmetics: make celp_filters.* formatting more consistent with the rest ofVitor Sessak
FFmpeg Originally committed as revision 20885 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-16Optimize ff_celp_lp_synthesis_filterf(). 50% faster in my tests.Vitor Sessak
Originally committed as revision 20884 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-10And on the sixth day, God gave us the <= operand, which makes the loopRonald S. Bultje
"for (i = 1; i < num + 1; i++)" look like "for (i = 1; i <= num; i++)". Programmers worldwide rejoiced and used the operand, e.g. in the thread "[PATCH] remove ugliness in cel_filters.c", and He saw that it was good. Originally committed as revision 20489 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-12Add ff_celp_circ_addf() function to be used for sparse vector circularColin McQuillan
convolution in the upcoming AMR-NB floating point decoder. The function scales and adds a vector, that is lagged by some offset, to another vector with the same number of elements. Patch by Colin McQuillan ( m.niloc googlemail com ) Originally committed as revision 19634 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-03Correct the sign of the arithmetic in ff_celp_lp_zero_synthesis_filterf()Colin McQuillan
Patch by Colin McQuillan ( m.niloc googlemail com ) Originally committed as revision 19574 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-02cosmetics: K&R coding styleDiego Biurrun
Originally committed as revision 19561 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-19Add LP zero synthesis filter. Patch by Kenan Gillet.Kenan Gillet
Originally committed as revision 18616 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-15[COSMETIC] Correct a minor nit. Should be clearer now.Reynaldo H. Verdejo Pinochet
Originally committed as revision 18529 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-15Fix possibly harmful outbound addressing. Patch by Kenan Gillet.Kenan Gillet
Originally committed as revision 18528 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-24Change sign in ff_celp_lp_synthesis_filterf(). This makes this functionKenan Gillet
useful for AMR and RA144. Patch by Kenan Gillet Originally committed as revision 17546 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-31Add a LPC filterKenan Gillet
Part of the QCELP patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15754 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25Split off celp_filters.[ch] from acelp_filters.[ch] for the QCELP decoder.Kenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15680 to svn://svn.ffmpeg.org/ffmpeg/trunk