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
2007-09-12fix timestamps used for ratecontrolMichael Niedermayer
these were wrong (in pts vs dts sense) when b frames were in use they were also wrong if the average framerate was smaller than 1/timebase resulting in totally wrong final bitrate Originally committed as revision 10477 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-10cosmeticMichael Niedermayer
Originally committed as revision 10465 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09make changing spatial_decomposition_count per frame workMichael Niedermayer
Originally committed as revision 10464 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09dsputil must be initialized before calling rtjpeg init.Reimar Döffinger
Originally committed as revision 10463 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09do not ignore return of decode_header()Michael Niedermayer
Originally committed as revision 10461 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09do not force the halfpel filter coeffs to be retransmitted on every frameMichael Niedermayer
if always_reset is set Originally committed as revision 10460 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09allow changing of the spatial_decomposition_count and quantization tablesMichael Niedermayer
per frame (this is untested as the encoder does not use it yet) Originally committed as revision 10458 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09perform init after reading the values needed for initMichael Niedermayer
fixes decoding of files with spatial_decomposition_count!=5 Originally committed as revision 10457 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09unneeded and impossible during init ...Michael Niedermayer
Originally committed as revision 10455 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09unusedMichael Niedermayer
Originally committed as revision 10454 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09allocate slice buffer after parsing the header containing needed parametersMichael Niedermayer
argh i really wish i had never accepted these slice patches ... Originally committed as revision 10453 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09remove ()Michael Niedermayer
Originally committed as revision 10452 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09spatial_decomposition_count != 5 bugfixMichael Niedermayer
Originally committed as revision 10451 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09scaling obmc tables under #if 0 also by 4 (yes they where forgotten apparently)Michael Niedermayer
this also requires a few entries to be ++ and -- to avoid a max of 256 Originally committed as revision 10450 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09Properly handle nuv file with changing resolutionReimar Döffinger
Originally committed as revision 10448 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09Make sure rtjpeg quality is a valid valueReimar Döffinger
Originally committed as revision 10444 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09Fix extreme stupidity: buffer size check must of course be before buffer use!Reimar Döffinger
Originally committed as revision 10443 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-0910l, add check forgotten in last commitReimar Döffinger
Originally committed as revision 10442 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09First ugly and slow attempt to fix nuv files with extra frameheaderReimar Döffinger
and per-frame rtjpeg quality Originally committed as revision 10441 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09Simplify nuv: factor out LZO decompressionReimar Döffinger
Originally committed as revision 10440 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-08rename HTAPS -> HTAPS_MAX (later is correct after the previous change)Michael Niedermayer
Originally committed as revision 10437 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-08store halfpel filter coefficients in the header as well as theMichael Niedermayer
flag for diagonal interpolation the primary reason for this change is that previously MC up to 1/4 pel matched H.264 exactly and that increases the risk of stumbling over patents secondly this allows 0.10 db or more quality gain by choosing a longer filter and the filter could also be chosen optimally for each frame though that of course would cause speed loss at the decoder and encoder side ... Originally committed as revision 10436 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-08remove outcommented codeMichael Niedermayer
Originally committed as revision 10435 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-08indentionMichael Niedermayer
Originally committed as revision 10434 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-08cleanup mc_block()Michael Niedermayer
perform interpolation steps in such an order that halfpel interpolation could be done per picture this also makes mc_block() match h.264 for the 1/4 pel cases so that the use of the h264 functions for some cases does not introduce a fantastic mess Originally committed as revision 10433 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-07IndentationAndreas Öman
patch by Andreas Öman Originally committed as revision 10432 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-07Let H.264 decoder skip deblocking across slicesAndreas Öman
if running with multiple threads and CODEC_FLAGS2_FAST is set. Thus, it may decode the slices in parallel to gain speed. Patch by Andreas Öman: [andreas olebyn nu] Originally committed as revision 10431 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-06Set data_size to zero when DCA header parse failedLimin Wang
Patch by Limin Wang <lance('\\'>>1)lmwang>(0x24^'D')<gmail>('/' & 0xFE)<com> Thread [PATCH] set data_size to zero if failed to parse dca header Originally committed as revision 10423 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-06Add a bitstream filter for H.264.Benoit Fouet
Originally committed as revision 10422 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-06Avoid a crash when H264 MMC operation causes the short term referenceJeff Downs
list to be emptied. Patch by Jeff Downs: [heydowns borg com] Originally committed as revision 10416 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05Add slice-based parallel H.264 decodingAndreas Öman
Patch by Andreas Öman % andreas A olebyn P nu % NB: depends on having a thread library activated at config time, and on having a source encoded with multiple slices Original threads: date: May 18, 2007 11:00 PM subject: [FFmpeg-devel] Parallelized h264 proof-of-concept date: Jun 15, 2007 10:10 PM subject: [FFmpeg-devel] [PATCH] h264 parallelized, (was: Parallelized h264 proof-of-concept) date: Jun 25, 2007 7:02 PM subject: Re: [FFmpeg-devel] [PATCH] h264 parallelized Originally committed as revision 10407 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05Fix put_*_xy2_arm bug and enable put_pixels16_arm and put_pixels8_y2_arm.Tao Huang
Speed up > 4%. patch by Tao Huang, ulysses.huang gmail com Originally committed as revision 10402 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05Sort one more list alphabetically.Diego Biurrun
Originally committed as revision 10401 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05Fix links to ARM documentationGuillaume Poirier
Originally committed as revision 10399 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05Move H.264 intra prediction functions into their own contextKostya Shishkov
Originally committed as revision 10397 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05add a 8 taps filter for testingMichael Niedermayer
Originally committed as revision 10394 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05fix decoding of dracula.4xm before diego complainsMichael Niedermayer
Originally committed as revision 10393 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05fix segfault with dracula.4xmMichael Niedermayer
closes issue132 Originally committed as revision 10392 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05Replace constants by HTAPS (half pel interpolation filter taps) where ↵Michael Niedermayer
appropriate. Originally committed as revision 10390 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-05code to do halfpel interpolation per frame (unfinished and under ifdef but itMichael Niedermayer
should be faster when its finished) Originally committed as revision 10293 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-04Fix issue 123 (Support Magic-carpet fli version,Mike Melanson
https://roundup.mplayerhq.hu/roundup/ffmpeg/issue123 ) by rearranging the bit depth Originally committed as revision 10290 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-04Silence warnings about NAL_SVC_NON_IDR in H.264.Carl Eugen Hoyos
patch by Carl Eugen Hoyos, cehoyos ag.or at Originally committed as revision 10289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-04add a close function to bitstream filterBenoit Fouet
Originally committed as revision 10288 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-03Remove error raising when explicitely skipping frameCarl Eugen Hoyos
patch by Carl Eugen Hoyos: [cehoyos ag or at] original thread: [FFmpeg-devel] [PATCH] Don't let ctx->skip_frame>0 produce errors date: 08/30/2007 01:30 PM Originally committed as revision 10286 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-02Remove reimplementation of get_unary.Vitor Sessak
Based on a patch by Alex Beregszaszi. Originally committed as revision 10279 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-01CosmeticsLuca Barbato
Originally committed as revision 10278 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-01add a warning message for unsupported kind of encodingAurelien Jacobs
Originally committed as revision 10277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-31Cosmetical: Empty line removalVitor Sessak
Originally committed as revision 10275 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-31Comment about unsupported sample sizeVitor Sessak
Originally committed as revision 10273 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-31renaming ARCH_BFIN to HAVE_BFINMarc Hoffman
Originally committed as revision 10272 to svn://svn.ffmpeg.org/ffmpeg/trunk