- 14 Nov, 2018 1 commit
-
-
Mark Thompson authored
Fixes #7538.
-
- 11 Nov, 2018 3 commits
-
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Also add SIMD which works on lines because it is faster then calculating it on 8x8 blocks using pixelutils. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 06 Nov, 2018 1 commit
-
-
James Almer authored
Originally written by Ronald S. Bultje, with fixes, optimizations and improvements by James Almer. Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 05 Nov, 2018 3 commits
-
-
Mark Thompson authored
-
Mark Thompson authored
-
Mark Thompson authored
-
- 02 Nov, 2018 2 commits
-
-
Philip Langdale authored
This is a cuda implementation of yadif, which gives us a way to do deinterlacing when using the nvdec hwaccel. In that scenario we don't have access to the nvidia deinterlacer.
-
James Almer authored
Reviewed-by:
Mark Thompson <sw@jkqxz.net> Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 25 Oct, 2018 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 03 Oct, 2018 1 commit
-
-
James Almer authored
Simple parser to set keyframes, frame type, structure, width, height, and pixel format, plus stream profile and level. Reviewed-by:
Mark Thompson <sw@jkqxz.net> Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 26 Sep, 2018 2 commits
-
-
Mark Thompson authored
Can adjust colour and timing information.
-
Mark Thompson authored
-
- 25 Sep, 2018 1 commit
-
-
Paul B Mahol authored
-
- 23 Sep, 2018 4 commits
-
-
Marton Balint authored
Also bump the API version requirement to 10.9.5, because on olders versions there were some reports of crashes using the undocumented, yet available BMDDeckLinkDeviceHandle. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Mark Thompson authored
Also adds greyscale, 4:2:2, 4:4:4 and RGB support.
-
Mark Thompson authored
-
Mark Thompson authored
Set the minimum version to 0.35.0 (libva 1.3.0) and remove redundant configure tests. This also allows the proprietary libmfx fork of libva, which always shows the version number 0.99.0 (independent of the actual version).
-
- 15 Sep, 2018 2 commits
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 13 Sep, 2018 1 commit
-
-
Paul B Mahol authored
-
- 11 Sep, 2018 1 commit
-
-
hwren authored
Signed-off-by:
hwren <hwrenx@126.com>
-
- 10 Sep, 2018 1 commit
-
-
Roman Arzumanyan authored
Signed-off-by:
Timo Rothenpieler <timo@rothenpieler.org>
-
- 09 Sep, 2018 1 commit
-
-
Devin Heitmueller authored
Hook in libklvanc and use it for output of EIA-708 captions over SDI. The bulk of this patch is just general support for ancillary data for the Decklink SDI module - the real work for construction of the EIA-708 CDP and VANC line construction is done by libklvanc. Libklvanc can be found at: https://github.com/stoth68000/libklvanc Updated to reflect feedback from Marton Balint <cus@passwd.hu>, Carl Eugen Hoyos <ceffmpeg@gmail.com>, Aaron Levinson <alevinsn_dev@levland.net>, and Moritz Barsnick <barsnick@gmx.net> Signed-off-by:
Devin Heitmueller <dheitmueller@ltnglobal.com> Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 08 Sep, 2018 1 commit
-
-
Paul B Mahol authored
-
- 01 Sep, 2018 1 commit
-
-
Marton Balint authored
Also make sure we set the URL context max packet size accordingly. Based on a patch by Tudor Suciu <tudor.suciu@gmail.com> Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 30 Aug, 2018 1 commit
-
-
Avi Halachmi (:avih) authored
- Allow to add deps in any order rather than "in linking order". - Expand deps chains as required rather than just once. - Validate that there are no cycles. - Validate that [after expansion] deps are limited to other fflibs. - Remove expectation for a specific output order of unique(). Previously when adding items to <fflib>_deps, developers were required to add them in linking order. This can be awkward and bug-prone, especially when a list is not empty, e.g. when adding conditional deps. It also implicitly expected unique() to keep the last instance of recurring items such that these lists maintain their linking order after removing duplicate items. This patch mainly allows to add deps in any order by keeping just one master list in linking order, and then reordering all the <fflib>_deps lists to align with the master list order. This master list is LIBRARY_LIST itself, where otherwise its order doesn't matter. The patch also removes a limit where these deps lists were expanded only once. This could have resulted in incomplete expanded lists, or forcing devs to add already-deducable deps to avoid this issue. Note: it is possible to deduce the master list order automatically from the deps lists, but in this case it's probably not worth the added complexity, even if minor. Maintaining one list should be OK. Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 27 Aug, 2018 6 commits
-
-
Shiyou Yin authored
Add gcc version check before add -fno-expensive-optimizations flag. Only when gcc version is lower than 5.3.0, this flag is needed. More bug info see: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67736 https://gcc.gnu.org/ml/gcc-patches/2012-05/msg00401.htmlSigned-off-by:
Shiyou Yin <yinshiyou-hf@loongson.cn> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Avi Halachmi (:avih) authored
x4 - x25 faster. check_deps() recursively enables/disables components, and its loop is iterated nearly 6000 times. It's particularly slow in bash - currently consuming more than 50% of configure runtime, and about 20% with other shells. This commit applies few local optimizations, most effective first: - Use $1 $2 ... instead of pushvar/popvar, and same at enable_deep* - Abort early in one notable case - empty deps, to avoid costly no-op. - Smaller changes which do add up: - Handle ${cfg}_checking locally instead of via enable[d]/disable - ${cfg}_checking: test done before inprogress - x2 faster in 50%+ - one eval instead of several at the empty-deps early abort path. - The "actual work" part is unmodified - just its surroundings. Biggest speedups (relative and absolute) are observed with bash. Tested-by:
Michael Niedermayer <michael@niedermayer.cc> Tested-by:
Helmut K. C. Tessarek <tessarek@evermeet.cx> Tested-by:
Dave Yeo <daveryeo@telus.net> Tested-by:
Reino Wijnsma <rwijnsma@xs4all.nl> Signed-off-by:
James Almer <jamrial@gmail.com>
-
Avi Halachmi (:avih) authored
x4 - x10 faster. Inside print_enabled components, the filter_list case invokes sed about 350 times to parse the same source file and extract different info for each arg. This is never instant, and on systems where fork is slow (notably MSYS2/Cygwin on windows) it takes many seconds. Change it to use sed once on the source file and set env vars with the parse results, then use these results inside the loop. Additionally, the cases of indev_list and outdev_list are very infrequent, but nevertheless they're faster, and arguably cleaner, with shell parameter substitutions than with command substitutions. Tested-by:
Michael Niedermayer <michael@niedermayer.cc> Tested-by:
Helmut K. C. Tessarek <tessarek@evermeet.cx> Tested-by:
Dave Yeo <daveryeo@telus.net> Tested-by:
Reino Wijnsma <rwijnsma@xs4all.nl> Signed-off-by:
James Almer <jamrial@gmail.com>
-
Avi Halachmi (:avih) authored
x50 - x200 faster. Currently configure spends 50-70% of its runtime inside a single function: flatten_extralibs[_wrapper] - which does string processing. During its run, nearly 20K command substitutions (subshells) are used, including its callees unique() and resolve(), which is the reason for its lengthy run. This commit avoids all subshells during its execution, speeding it up by about two orders of magnitude, and reducing the overall configure runtime by 50-70% . resolve() is rewritten to avoid subshells, and in unique() and flatten_extralibs() we "inline" the filter[_out] functionality. Note that logically, "unique" functionality has more than one possible output (depending on which of the recurring items is kept). As it turns out, other parts expect the last recurring item to be kept (which was the original behavior of uniqie()). This patch preservs its output order. Tested-by:
Michael Niedermayer <michael@niedermayer.cc> Tested-by:
Helmut K. C. Tessarek <tessarek@evermeet.cx> Tested-by:
Dave Yeo <daveryeo@telus.net> Tested-by:
Reino Wijnsma <rwijnsma@xs4all.nl> Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 23 Aug, 2018 1 commit
-
-
Michael Niedermayer authored
Found-by: Max Moroz Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 17 Aug, 2018 1 commit
-
-
James Almer authored
This reverts commit e45ed155. The Matroska spec was updated to not remove Sequence Header OBUs from key frames, so this is no longer needed.
-
- 12 Aug, 2018 1 commit
-
-
Danil Iashchenko authored
Add erosion_opencl, dilation_opencl filters. Behave like existing erosion and dilation filters.
-
- 10 Aug, 2018 1 commit
-
-
Kyle Swanson authored
Signed-off-by:
Kyle Swanson <kswanson@netflix.com>
-
- 02 Aug, 2018 1 commit
-
-
James Almer authored
Some containers, like Matroska, may propagate key frames with no Sequence Header OBU since it's provided in extradata instead. With this change, the Sequence Header will be appended to the packet data before calling aom_codec_decode(). Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 30 Jul, 2018 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-