summaryrefslogtreecommitdiff
path: root/libavfilter/vf_scale_vaapi.c
Commit message (Collapse)AuthorAge
* lavfi: Always propagate hw_frames_ctx through linksMark Thompson2016-11-02
| | | | | | | | | | | | | | | 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).
* lavfi: Use ff_get_video_buffer in all filters using hwframesMark Thompson2016-11-02
|
* vf_scale_vaapi: Crop input surface to active regionMark Thompson2016-09-14
| | | | | | 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.
* vf_scale_vaapi: Respect driver quirks around buffer destructionMark Thompson2016-07-02
|
* lavf: VAAPI scale filterMark Thompson2016-03-23
Signed-off-by: Anton Khirnov <anton@khirnov.net>