git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avformat/flvdec : add missing track_size decrement
7 janvier, par Timo Rothenpieler -
hwcontext_vulkan : check if semaphores are exportable before enabling exporting
7 janvier, par Lynnehwcontext_vulkan: check if semaphores are exportable before enabling exporting lavapipe recently added support for external_semaphore_fd, but only for syncfiles, not for opaque file descriptors. The code is written to allow using syncfiles later on. Ref: https://gitlab.freedesktop.org/mesa/mesa/-/issues/12422
-
avcodec/h264dec : make slice header parse errors fatal under AV_EF_EXPLODE
7 janvier, par Dale Curtis -
avcodec/mpegvideo_enc : add checks for custom inter/intra/chroma matrices
6 janvier, par Marton Balint -
avcodec/mpegvideo_enc : use 64bit multiplication in dct_quantize_trellis_c and dct_qua...
6 janvier, par Marton Balintavcodec/mpegvideo_enc: use 64bit multiplication in dct_quantize_trellis_c and dct_quantize_c Fixes corruption with: ffmpeg -t 1 -filter_complex "sine=f=21,showwaves=scale=cbrt:mode=line:colors=white:draw=full" -c:v mpeg2video -non_linear_quant 1 -qmin 1 -qmax 1 -cpuflags 0 out.mpg or ffmpeg -t 1 -filter_complex "sine=f=21,showwaves=scale=cbrt:mode=line:colors=white:draw=full" -c:v mpeg2video -non_linear_quant 1 -qmin 1 -qmax 1 -trellis 1 out.mpg Signed-off-by: Marton Balint <cus@passwd.hu>