Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-09-28Merge commit '5c8a5765dc5f4e29afb85b95be393c30f45412a8'James Almer
* commit '5c8a5765dc5f4e29afb85b95be393c30f45412a8': scale_npp: explicitly set the output frames context for passthrough mode See 62b75537db15816fde8b8a33976ffc4a8277f1fc Merged-by: James Almer <jamrial@gmail.com>
2017-08-14avfilter/scale_npp: fix logic used in previous patchTimo Rothenpieler
2017-08-14avfilter/scale_npp: check for buffer allocation failureTimo Rothenpieler
I totally did not forget to amend this to the previous patch...
2017-08-14avfilter/scale_npp: fix passthrough modeYogender Gupta
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
2017-06-13avfilter/vf_scale_npp: fix out-of-bounds readsTimo Rothenpieler
Fixes CIDs 1396414 and 1396415
2017-03-30Merge commit 'e3fb74f7f9a8f1895381355f40c92cac3c1023d9'Matthieu Bouron
* commit 'e3fb74f7f9a8f1895381355f40c92cac3c1023d9': lavfi: Always propagate hw_frames_ctx through links Merged-by: Matthieu Bouron <matthieu.bouron@gmail.com>
2017-02-11scale_npp: explicitly set the output frames context for passthrough modeAnton Khirnov
This is no longer done automatically for filters marked as hwframe-aware.
2017-02-03avfilter/scale: refactor common code for scaling height/width expressionsAman Gupta
Implements support for height/width expressions in vf_scale_vaapi, by refactoring common code into a new libavfilter/scale.c Signed-off-by: Mark Thompson <sw@jkqxz.net>
2016-11-30avfilter/vf_scale_npp: check ff_set_common_formats return valueTimo Rothenpieler
2016-11-30avfilter/vf_scale_npp: move aspect ratio correction after av_frame_copy_propsMiroslav Slugeň
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
2016-11-22avfilter/vf_scale_npp: use dynamically loaded CUDATimo Rothenpieler
2016-11-02lavfi: Always propagate hw_frames_ctx through linksMark Thompson
Also adds a new flag to mark filters which are aware of hwframes and will perform this task themselves, and marks all appropriate filters with this flag. This is required to allow software-mapped hardware frames to work, because we need to have the frames context available for any later mapping operation in the filter graph. The output from the filter graph should only propagate further to an encoder if the hardware format actually matches the visible format (mapped frames are valid here and have an hw_frames_ctx, but this should not be given to the encoder as its hardware context).
2016-10-26avfilter/scale_npp: fix passthrough modeYogender Gupta
Reviewed-by: Timo Rothenpieler <timo@rothenpieler.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-25scale_npp: fix passthrough modeYogender Gupta
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2016-10-19avfilter/vf_scale_npp: select cubic and lanczos as alternative where ↵Sven C. Dack
super-sampling is not supported Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
2016-04-21avfilter: Add AV_OPT_FLAG_FILTERING_PARAM to where it was missingMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-04-18Merge commit '8a02a8031ef4f98faf5647f0e01a8922247bf748'Derek Buitenhuis
* commit '8a02a8031ef4f98faf5647f0e01a8922247bf748': lavfi: add an NVIDIA NPP-based scaling filter Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-03-23lavfi: add an NVIDIA NPP-based scaling filterAnton Khirnov