| Commit message (Expand) | Author | Age | Files | Lines |
* | all: use designated initializers for AVOption.unit | Anton Khirnov | 2024-02-14 | 1 | -3/+3 |
* | libavfilter/dnn_interface: use dims to represent shapes | Wenbin Chen | 2024-01-28 | 1 | -7/+14 |
* | avfilter: Remove unnecessary formats.h inclusions | Andreas Rheinhardt | 2023-08-07 | 1 | -2/+0 |
* | avfilter/internal: Don't include video.h | Andreas Rheinhardt | 2023-08-07 | 1 | -0/+1 |
* | avfilter/vf_dnn_processing: replace magic number by enum value | Zhao Zhili | 2023-06-08 | 1 | -3/+3 |
* | lavfi/dnn: Remove DNN native backend | Ting Fu | 2023-04-28 | 1 | -1/+0 |
* | lavfi/dnn: Modified DNN native backend related tools and docs. | Ting Fu | 2023-04-28 | 1 | -1/+1 |
* | lavfi/vf_dnn_processing.c: Fix missing AV_PIX_FMT_GRAY8 | Cosmin Stejerean | 2022-11-15 | 1 | -0/+1 |
* | libavfilter: Remove DNNReturnType from DNN Module | Shubhanshu Saxena | 2022-03-12 | 1 | -4/+4 |
* | libavfilter: Prepare to handle specific error codes in DNN Filters | Shubhanshu Saxena | 2022-03-12 | 1 | -4/+4 |
* | avfilter: Reindentation after query_formats changes | Andreas Rheinhardt | 2021-10-05 | 1 | -8/+8 |
* | avfilter/vf_dnn_processing: Use formats list instead of query function | Andreas Rheinhardt | 2021-10-05 | 1 | -5/+1 |
* | avfilter: Replace query_formats callback with union of list and callback | Andreas Rheinhardt | 2021-10-05 | 1 | -1/+1 |
* | libavfilter: Remove synchronous functions from DNN filters | Shubhanshu Saxena | 2021-08-28 | 1 | -82/+2 |
* | libavfilter: Unify Execution Modes in DNN Filters | Shubhanshu Saxena | 2021-08-28 | 1 | -5/+5 |
* | avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter | Andreas Rheinhardt | 2021-08-20 | 1 | -4/+2 |
* | avfilter/formats: Factor common function combinations out | Andreas Rheinhardt | 2021-08-13 | 1 | -2/+1 |
* | lavfi/vf_dnn_processing.c: fix CID 1460603 | Guo, Yejun | 2021-05-18 | 1 | -0/+3 |
* | avfilter: Constify all AVFilters | Andreas Rheinhardt | 2021-04-27 | 1 | -1/+1 |
* | dnn: add function type for model | Guo, Yejun | 2021-02-18 | 1 | -1/+1 |
* | dnn: extract common functions used by different filters | Guo, Yejun | 2021-02-18 | 1 | -78/+15 |
* | libavfilter/dnn: use avpriv_report_missing_feature for unsupported features | Guo, Yejun | 2021-01-22 | 1 | -2/+2 |
* | libavfilter/dnn: add batch mode for async execution | Guo, Yejun | 2021-01-15 | 1 | -3/+37 |
* | dnn: fix issue when pthread is not supported | Guo, Yejun | 2020-12-31 | 1 | -0/+7 |
* | vf_dnn_processing.c: add async support | Guo, Yejun | 2020-12-29 | 1 | -1/+77 |
* | dnn_interface: change from 'void *userdata' to 'AVFilterContext *filter_ctx' | Guo, Yejun | 2020-12-29 | 1 | -1/+1 |
* | vf_dnn_processing.c: replace filter_frame with activate func | Guo, Yejun | 2020-12-29 | 1 | -2/+47 |
* | dnn: add NV12 pixel format support | Ting Fu | 2020-12-22 | 1 | -9/+21 |
* | dnn: add a new interface DNNModel.get_output | Guo, Yejun | 2020-09-21 | 1 | -13/+4 |
* | dnn: put DNNModel.set_input and DNNModule.execute_model together | Guo, Yejun | 2020-09-21 | 1 | -14/+4 |
* | dnn: change dnn interface to replace DNNData* with AVFrame* | Guo, Yejun | 2020-09-21 | 1 | -199/+41 |
* | dnn: add userdata for load model parameter | Guo, Yejun | 2020-09-21 | 1 | -1/+1 |
* | dnn: move output name from DNNModel.set_input_output to DNNModule.execute_model | Guo, Yejun | 2020-08-25 | 1 | -5/+4 |
* | dnn: add backend options when load the model | Guo, Yejun | 2020-08-12 | 1 | -1/+3 |
* | vf_dnn_processing.c: add dnn backend openvino | Guo, Yejun | 2020-07-02 | 1 | -1/+4 |
* | avfilter/vf_dnn_processing.c: fix typo for the linesize of dnn data | Guo, Yejun | 2020-04-07 | 1 | -2/+2 |
* | lavfi/vf_dnn_processing: Fix compile warning of mixed declarations and code | Linjie Fu | 2020-03-19 | 1 | -2/+5 |
* | avfilter/vf_dnn_processing.c: add frame size change support for planar yuv fo... | Guo, Yejun | 2020-03-12 | 1 | -7/+30 |
* | avfilter/vf_dnn_processing.c: add planar yuv format support | Guo, Yejun | 2020-03-12 | 1 | -0/+72 |
* | avfilter/vf_dnn_processing.c: use swscale for uint8<->float32 convert | Guo, Yejun | 2020-03-12 | 1 | -20/+61 |
* | lavfi/dnn_processing: refine code to use function av_image_copy_plane for dat... | Guo, Yejun | 2020-01-14 | 1 | -61/+24 |
* | vf_dnn_processing: add support for more formats gray8 and grayf32 | Guo, Yejun | 2020-01-07 | 1 | -42/+126 |
* | vf_dnn_processing: remove parameter 'fmt' | Guo, Yejun | 2020-01-07 | 1 | -46/+49 |
* | avfilter/vf_dnn_processing: refine code for better naming | Guo, Yejun | 2019-12-13 | 1 | -45/+45 |
* | avfilter/vf_dnn_processing: correct duplicate statement | leozhang | 2019-11-08 | 1 | -2/+2 |
* | avfilter/vf_dnn_processing: fix fate-source | Guo, Yejun | 2019-11-08 | 1 | -1/+1 |
* | avfilter/vf_dnn_processing: add a generic filter for image proccessing with d... | Guo, Yejun | 2019-11-07 | 1 | -0/+331 |