git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
fftools/ffmpeg : Log exit code on exit
19 avril, par softworkzfftools/ffmpeg: Log exit code on exit When viewing logs, there are situations where it is not entirely clear whether ffmpeg CLI has exited gracefully. The two primary cases are - A crash/segfault has occured Windows for example doesn't output any message to the calling shell - The process has been terminated (e.g. killed externally) Printing a message on exit provides a reliable indication that the process has exited normally. Printing the exit code is useful as it usually remains invisible and unnoticed by users running FFmpeg from a shell. Signed-off-by: softworkz <softworkz@hotmail.com>
-
fftools/ffmpeg : Include elapsed-time in print_report()
19 avril, par softworkz -
fftools/ffprobe : Disable stderr buffering on Windows
19 avril, par softworkzfftools/ffprobe: Disable stderr buffering on Windows An identical call exists in ffmpeg.c With POSIX/glibc, stderr is already unbuffered (or line-buffered when a terminal is connected), but not in case of MSVCRT. Explicitly calling setvbuf() like in this commit, makes the Windows runtime behave like POSIX, giving the same “print immediately” behavior. Signed-off-by: softworkz <softworkz@hotmail.com>
-
lavc : APV metadata bitstream filter
19 avril, par Mark Thompson -
lavc/apv : AVX2 transquant for x86-64
19 avril, par Mark Thompsonlavc/apv: AVX2 transquant for x86-64 Typical checkasm result on Alder Lake: decode_transquant_8_c: 464.2 ( 1.00x) decode_transquant_8_avx2: 86.2 ( 5.38x) decode_transquant_10_c: 481.6 ( 1.00x) decode_transquant_10_avx2: 83.5 ( 5.77x)