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-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-03-30Merge commit '7e2561fa8313982aa21f7657953eedeeb33b210d'Matthieu Bouron
* commit '7e2561fa8313982aa21f7657953eedeeb33b210d': lavfi: Use ff_get_video_buffer in all filters using hwframes vf_hwupload_cuda: Fix build error Merged-by: Matthieu Bouron <matthieu.bouron@gmail.com>
2017-03-20Merge commit 'bdf7610eb266fd3de650040c97328791868abd82'Clément Bœsch
* commit 'bdf7610eb266fd3de650040c97328791868abd82': vf_scale_vaapi: Crop input surface to active region Merged-by: Clément Bœsch <u@pkh.me>
2017-02-05vf_scale_vaapi: Add missing return value checksMark Thompson
Fixes CID 1374119.
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-13vf_scale_vaapi: Respect driver quirks around buffer destructionMark Thompson
(cherry picked from commit 582d4211e00015b68626f77ce4af53161e2b1713)
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-11-02lavfi: Use ff_get_video_buffer in all filters using hwframesMark Thompson
2016-09-14vf_scale_vaapi: Crop input surface to active regionMark Thompson
If the input has been decoded from a stream which uses edge cropping then the whole surface need not be valid. This defines an input region for the scaler so we only use the active area of the frame.
2016-07-02vf_scale_vaapi: Respect driver quirks around buffer destructionMark Thompson
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 '98114d70e48caf871b0fe9b8e5bf8ebd989b845d'Derek Buitenhuis
* commit '98114d70e48caf871b0fe9b8e5bf8ebd989b845d': lavf: VAAPI scale filter Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-03-23lavf: VAAPI scale filterMark Thompson
Signed-off-by: Anton Khirnov <anton@khirnov.net>