git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/vc2enc : Simplify writing dirac golomb codes
8 mars, par Andreas Rheinhardtavcodec/vc2enc: Simplify writing dirac golomb codes The earlier code used a loop to determine the number of bits used and called ff_log2() on a power of two (and it would be easy to keep track of the exponent of said power-of-two); neither GCC nor Clang optimized the loop away or avoided the ff_log2(). This patch replaces the loop and the log2 with a single av_log2(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
doc : add swscale rewrite design document
7 mars, par Niklas Haas -
vulkan_decode : adjust number of async contexts created
7 mars, par Lynne -
swscale : fix gray -> grayf32 SIGFPE
7 mars, par Niklas Haasswscale: fix gray -> grayf32 SIGFPE swscale internals don't distinguish between 16-bit and higher bit depth output formats internally when it comes to the choice of intermediate representation. Clamping this value both prevents a SIGFPE and also aligns the check with reality.
-
avcodec/rl : Avoid temporary stack VLC array during RL VLC init
7 mars, par Andreas Rheinhardt