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
2008-02-26Get rid of another useless variable.Michael Niedermayer
Originally committed as revision 12236 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26Avoid a=b+c but rather use a+=b (gcc is too stupid to do this itself),Michael Niedermayer
code is exactly the same just uses different variables. Originally committed as revision 12235 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26One variable less. No real change to the actual code.Michael Niedermayer
Originally committed as revision 12234 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26floating point AAN IDCTMichael Niedermayer
Originally committed as revision 12233 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26decode mng color decorrelationLoren Merritt
Originally committed as revision 12228 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26Remove START_TIMER and STOP_TIMER macros.Diego Biurrun
Originally committed as revision 12227 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26simplifyLoren Merritt
Originally committed as revision 12224 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26split encoding part of dsputil_mmx into its own fileAurelien Jacobs
Originally committed as revision 12223 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26Remove commented-out av_log calls.Diego Biurrun
Originally committed as revision 12222 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26Fix trellis quant + AAN DCT.Michael Niedermayer
Originally committed as revision 12221 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26Make diego happy.Michael Niedermayer
Originally committed as revision 12220 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26compile various fdct only when encoders are enabledAurelien Jacobs
Originally committed as revision 12219 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Clarify which BSD license.Michael Niedermayer
Originally committed as revision 12214 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Allow use of my AAN DCT under BSD, AMD has agreed to write and contributeMichael Niedermayer
SSE(float) AAN DCT and IDCT to ffmpeg (no C++, no crap). Originally committed as revision 12212 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25png filtersLoren Merritt
Originally committed as revision 12195 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Install headers in $prefix/include/$libnameMåns Rullgård
Install each library's headers in $prefix/include/$libname. The installed headers use #include "lib*/*.h"; applications are expected to do the same. Specify only $prefix/include in .pc files. Originally committed as revision 12194 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25remove a memcpyLoren Merritt
Originally committed as revision 12193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-24fix memory leaks in vp3 decoderMåns Rullgård
Originally committed as revision 12191 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-24__asm __volatile -> asm volatile part 2Reimar Döffinger
Originally committed as revision 12189 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-24__asm __volatile -> asm volatile, improves code consistency and worksReimar Döffinger
(as far as that is possible) with the Sun C compiler. Originally committed as revision 12188 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-24Fix bug I introduced in r11962.Vitor Sessak
Thanks to Uoti Urpala for spotting it and proposing the fix. Originally committed as revision 12187 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-24Riff ids for wmapro and wmavoice, this adds support for stream copy of these ↵Benjamin Larsson
codecs between asf,avi and wav containers. Originally committed as revision 12182 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-22Remove apparently unneeded and buggy align.Michael Niedermayer
Originally committed as revision 12179 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-22cleaner way of writing packed-byte constants.Loren Merritt
suggested by Uoti Urpala Originally committed as revision 12177 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-21indentLoren Merritt
Originally committed as revision 12166 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-21pseudo-simd add_bytes and diff_bytesLoren Merritt
2x faster than scalar in 32bit, 4x faster in 64bit (as opposed to 8x in mmx) Originally committed as revision 12165 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-21simd and unroll png_filter_rowLoren Merritt
cycles per 1000 pixels on core2: left: 9211->5170 top: 9283->2138 avg: 12215->7611 paeth: 64024->17360 overall rgb png decoding speed: +45% overall greyscale png decoding speed: +6% Originally committed as revision 12164 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-21Disabling all SSE* code for old gcc to avoid alignment issues.Michael Niedermayer
Originally committed as revision 12163 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20revert 12156Michael Niedermayer
Log: Make timestamp interpolation work with mpeg2 field pictures. Cleaner/simpler solutions are welcome. ---- A IMHO cleaner solution has been implemented. Originally committed as revision 12162 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Forgot this, which is needed for merging field pics too.Michael Niedermayer
Originally committed as revision 12161 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Make find_frame_end() merge 2 mpeg2 field pictures. This should make mpeg2Michael Niedermayer
field pictures much more digestable. Originally committed as revision 12160 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Make timestamp interpolation work with mpeg2 field pictures.Michael Niedermayer
Cleaner/simpler solutions are welcome. Originally committed as revision 12156 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Clean up lib* version definitionsMåns Rullgård
Updating version numbers now requires changing only one place. Originally committed as revision 12154 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Fix ;;Michael Niedermayer
Originally committed as revision 12153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Fix warnings:Reimar Döffinger
i386/vp3dsp_sse2.c:805: warning: cast discards qualifiers from pointer target type i386/vp3dsp_sse2.c:806: warning: cast discards qualifiers from pointer target type Originally committed as revision 12150 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Remove duplicate ;Reimar Döffinger
Originally committed as revision 12149 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Add casts to avoid warnings:Reimar Döffinger
fraps.c:102: warning: passing argument 1 of ‘s->dsp.bswap_buf’ from incompatible pointer type fraps.c:102: warning: passing argument 2 of ‘s->dsp.bswap_buf’ from incompatible pointer type Originally committed as revision 12148 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Missing constReimar Döffinger
Originally committed as revision 12147 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-19Reduce the number of senselessly scanned bytes.Michael Niedermayer
Originally committed as revision 12144 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-19arg 10000l. Fix wrong fix committed in r12141Guillaume Poirier
Originally committed as revision 12143 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-19fix broken indentationGuillaume Poirier
Originally committed as revision 12142 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-1910l: fix always false test: Binary & has lower precedence than ==Guillaume Poirier
Originally committed as revision 12141 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-19Refactor vcprm and vcii macros by using the AVV macro.Diego Biurrun
Originally committed as revision 12140 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-19Refactor the FOUROF macro using the AVV macro.Diego Biurrun
Originally committed as revision 12139 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-19Remove stray #undef.Diego Biurrun
Originally committed as revision 12138 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-19fix crash on non-AltiVec powered machines: MPV_common_init_altivec doesn't ↵Alexander Strange
check mm_flags Patch by Alexander Strange %astrange A ithinksw PP com % Originally committed as revision 12137 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-17remove duplicate AV_STRINGIFY() definitionMåns Rullgård
Originally committed as revision 12129 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-16clean up definition of DECLARE_ALIGNED_8 and STRIDE_ALIGNMåns Rullgård
Originally committed as revision 12126 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-16FLAT objects cannot have multiple sections, so using the L1 attributes breaksMike Frysinger
linking. The FDPIC relocs also break for any other format. Thus check the compiler environment and select the appropriate sections/relocs. patch by Mike Frysinger, vapier.adi a gmail d com Originally committed as revision 12125 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-16100lVitor Sessak
Originally committed as revision 11964 to svn://svn.ffmpeg.org/ffmpeg/trunk