git.libav.org Git - libav.git/rss log
Libav master git repository
Les articles publiés sur le site
-
libsrt : Pass the correct pointer for the passphrase
13 juillet 2018, par Sven Dueking -
libfdk-aac : Use enum names instead of literal numbers for the output format
5 juillet 2018, par Martin Storsjö -
qsvenc : use the compression_level to replace private option
8 juin 2018, par Zhong Liqsvenc: use the compression_level to replace private option Use a common way to control target_usage, keeping consistent with vaapi encoders. The private option preset is kept only for compatibility. Signed-off-by: Zhong Li <zhong.li@intel.com> Signed-off-by: Maxym Dmytrychenko <maxim.d33@gmail.com>
-
qsvenc : remove vcm option on Linux
7 juin 2018, par Zhong Liqsvenc: remove vcm option on Linux 1. vcm mode is only available for H264. 2. vcm is not supported on Linux, but it is shown when run "./avconv -h encoder=h264_qsv |grep vcm". This shouldn't happen. Signed-off-by: Zhong Li <zhong.li@intel.com> Signed-off-by: Maxym Dmytrychenko <maxim.d33@gmail.com>
-
configure : fix inline asm checks
30 mai 2018, par John Coxconfigure: fix inline asm checks Commit 8c893aa3cd5 removed quotes that were required to detect inline asm: check_insn armv5te qadd r0, r0, r0 .../test.c:1:34: error: expected string literal in 'asm' void foo(void){ __asm__ volatile(qadd r0, r0, r0); } The correct code is: void foo(void){ __asm__ volatile("qadd r0, r0, r0"); } Commit message written by Frank Liberato <liberato@chromium.org> Signed-off-by: Martin Storsjö <martin@martin.st>