git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
vulkan_ffv1 : cache only 2 lines when decoding RGB
1er avril, par Lynnevulkan_ffv1: cache only 2 lines when decoding RGB This reduces the intermediate VRAM used for RGB decoding by a factor of 100x for 6k video. This also speeds the decoder up by 16% for 4k RGB24 and 31% for 6k video. This is equivalent to what the software decoder does, but with less pointers.
-
avutil/tests/aes_ctr : test more than a single block worth of data
1er avril, par James Almer -
avutil/aes_ctr : simplify incrementing the counter
1er avril, par James Almer -
avutil/aes_ctr : simplify and optimize av_aes_ctr_crypt()
1er avril, par James Almeravutil/aes_ctr: simplify and optimize av_aes_ctr_crypt() Process data in chunks of four or eight bytes, depending on host, instead of one at a time. before: 55561 decicycles in av_aes_ctr_crypt after: 52204 decicycles in av_aes_ctr_crypt Signed-off-by: James Almer <jamrial@gmail.com>
-
avcodec/mediacodecdec : Reset optional fields when parse format
1er avril, par Zhao Zhiliavcodec/mediacodecdec: Reset optional fields when parse format Parse format can be called multiple times, e.g., when resolution changed. If getInt32 fails, optional member variables will retain their previously set values without modification. This can be a big problem for new resolution with old crop info. This patch reset optional fields to zero when getInt32 failed.