- 28 Jun, 2018 1 commit
-
-
Jun Zhao authored
opencl_vaapi_intel_media doesn't depend on libmfx, OpenCL
Drivers and Runtimes for Intel Architectureis is a standalone release, more information can be found in the link: https://software.intel.com/en-us/articles/opencl-drivers. Signed-off-by:Jun Zhao <mypopydev@gmail.com>
-
- 25 Jun, 2018 1 commit
-
-
James Almer authored
Version 1.0.0 is the first release after the bitstream freeze. Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 21 Jun, 2018 1 commit
-
-
Ruiling Song authored
This filter does HDR(HDR10/HLG) to SDR conversion with tone-mapping. An example command to use this filter with vaapi codecs: FFMPEG -init_hw_device vaapi=va:/dev/dri/renderD128 -init_hw_device \ opencl=ocl@va -hwaccel vaapi -hwaccel_device va -hwaccel_output_format \ vaapi -i INPUT -filter_hw_device ocl -filter_complex \ '[0:v]hwmap,tonemap_opencl=t=bt2020:tonemap=linear:format=p010[x1]; \ [x1]hwmap=derive_device=vaapi:reverse=1' -c:v hevc_vaapi -profile 2 OUTPUT Signed-off-by:
Ruiling Song <ruiling.song@intel.com>
-
- 20 Jun, 2018 1 commit
-
-
Danil Iashchenko authored
Behaves like existing boxblur filter.
-
- 15 Jun, 2018 1 commit
-
-
Timo Rothenpieler authored
-
- 13 Jun, 2018 1 commit
-
-
Carl Eugen Hoyos authored
Fixes linking with "--disable-everything --enable-bsf=eac3_core".
-
- 07 Jun, 2018 1 commit
-
-
Jun Zhao authored
add pkg-config support for opencl check. Signed-off-by:
Jun Zhao <mypopydev@gmail.com>
-
- 06 Jun, 2018 1 commit
-
-
John Cox authored
Commit 8c893aa3 removed quotes that were required to detect inline asm in clang: 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:
James Almer <jamrial@gmail.com>
-
- 05 Jun, 2018 1 commit
-
-
Sergey Lavrushkin authored
Signed-off-by:
Pedro Arthur <bygrandao@gmail.com>
-
- 27 May, 2018 2 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Reino Wijnsma authored
Add missing libraries needed when linking with a static build of MbedTLS. Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 21 May, 2018 1 commit
-
-
Thomas Volkert authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 18 May, 2018 1 commit
-
-
Rostislav Pehlivanov authored
The FATE tests for MSVC versions older than 2013 are untested in FATE and apparently are no longer supported. This commit makes the configure process error out in case an older version is used, and suggests to use a supported version of MSVC to compile. This also changes the documentation to reflect this. As discussed on IRC: 2018-05-12 19:45:16 jamrial then again, most of those were for old msvc, and i think we're not supporting versions older than 2013 (first one c99 compliant) anymore 2018-05-12 19:45:43 +JEEB yea, I think 2013 update 2 is needed 22:53 <@atomnuker> nevcairiel: which commit broke/unsupported support for msvc 2013? 23:23 <@atomnuker> okay, it was JEEB 23:25 <+JEEB> which was for 2012 and older 23:25 <+JEEB> and IIRC we no longer test those in FATE so that was my assumption 23:26 <+JEEB> 2013 is when MS got trolled enough to actually update their C part 23:26 <+JEEB> aand actually advertised FFmpeg support 23:26 <+JEEB> (although it was semi-failing until VS2013 update 1 or 2) Signed-off-by:
Rostislav Pehlivanov <atomnuker@gmail.com>
-
- 14 May, 2018 2 commits
-
-
Carl Eugen Hoyos authored
-
Reino Wijnsma authored
This does require libmysofa with today's latest commit (https://github.com/hoene/libmysofa/commit/08f243d1ec35f6f794aedeb4b187d9f9353bdbc1). They already had a pkg-config file, but the dependencies weren't setup right. Until now.
-
- 13 May, 2018 1 commit
-
-
Niklas Haas authored
This should be included as `<lilv/lilv.h>`, same as is done in af_lv2.c. Forcing the extra lilv-0 breaks platforms where the include dir is `/usr/include/lilv/lilv.h` rather than `/usr/include/lilv-0/lilv/lilv.h`. The new include path works for both, because the `pkg-config --cflags` includes `-I/usr/include/lilv-0`.
-
- 10 May, 2018 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 09 May, 2018 1 commit
-
-
Timo Rothenpieler authored
-
- 08 May, 2018 1 commit
-
-
Hendrik Leppkes authored
The filter uses avio for file access already, and avio_check is portable. Fixes trac #7192.
-
- 06 May, 2018 3 commits
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
James Almer authored
The access dependecy is temporary and should fix compilation with msvc until a proper fix is committed. Signed-off-by:
James Almer <jamrial@gmail.com>
-
Jan Ekström authored
It exists, so why not use it? Helps one get rid of additional search path related flags in addition to PKG_CONFIG_{PATH,LIBDIR} when utilizing a cross-prefix separate from the sysroot.
-
- 04 May, 2018 1 commit
-
-
wm4 authored
This can "demux" .vpy files. Autodetection of .vpy scripts is intentionally not done, because it would be a major security issue. You need to force the format, for example with "-f vapoursynth" for the FFmpeg CLI tools. Some minor code copied from other LGPL parts of FFmpeg. I did not find a good way to test a few of the more obscure VS features, like VFR nodes, compat pixel formats, or nodes with dynamic size/format changes. These can be easily implemented on demand.
-
- 02 May, 2018 2 commits
-
-
Mark Thompson authored
Can adjust the colour information.
-
Mark Thompson authored
-
- 29 Apr, 2018 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 25 Apr, 2018 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 23 Apr, 2018 2 commits
-
-
Rostislav Pehlivanov authored
This reverts commit 62f5c9d6, which was pushed a bit prematurely.
-
Thomas Volkert authored
-
- 19 Apr, 2018 1 commit
-
-
Hendrik Leppkes authored
Without properly grouping the checks, the second test would execute for MSVC cl.exe, which results in configure getting stuck since cl.exe -? is an interactive paginated help screen, waiting for input.
-
- 16 Apr, 2018 2 commits
-
-
Timo Rothenpieler authored
This was somehow forgotten and nobody noticed until now.
-
James Almer authored
Some old mingw-w64 builds seem to provide an incomplete implementation of the API. Add an extra check to make sure it's disabled for those. Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 15 Apr, 2018 1 commit
-
-
Alexander Bilyak authored
When using clang-cl it expects parameters passed in MSVC-style, so appropriate toolchain should be selected. As soon as both clang and clang-cl report themselfs as "clang" with -v option the only chance to detect clang-cl is passing -? option to both which is valid for clang-cl.exe and not for clang.exe. Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 14 Apr, 2018 1 commit
-
-
Steve Lhomme authored
Remove the wincrypt API calls since we don't support XP anymore and bcrypt is available since Vista, even on Windows Store builds. Reviewed-by:
Michael Niedermayer <michael@niedermayer.cc> Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 13 Apr, 2018 2 commits
-
-
Michael Niedermayer authored
C11 atomics allow direct access. This check should prevent the usage of bogus stdatomic.h available on some systems. Signed-off-by:
James Almer <jamrial@gmail.com>
-
James Almer authored
It appears strip -o creates new files without preserving permissions from the source binary, resulting in non executable files. Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 12 Apr, 2018 1 commit
-
-
Carl Eugen Hoyos authored
AIX strip doesn't know the option -o.
-
- 10 Apr, 2018 2 commits
-
-
James Almer authored
Should fix compilation wiht some old mingw-w64 builds that don't seem to define it. Signed-off-by:
James Almer <jamrial@gmail.com>
-
James Almer authored
Should fix compilation on targets like some old Android NDK versions. Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 09 Apr, 2018 1 commit
-
-
wm4 authored
This removes the XP compatibility code, and switches entirely to SRW locks, which are available starting at Windows Vista. This removes CRITICAL_SECTION use, which allows us to add PTHREAD_MUTEX_INITIALIZER, which will be useful later. Windows XP is hereby not a supported build target anymore. Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-