FFmpeg/libavfilter/dnn
Anton Khirnov 1e7d2007c3 all: use designated initializers for AVOption.unit
Makes it robust against adding fields before it, which will be useful in
following commits.

Majority of the patch generated by the following Coccinelle script:

@@
typedef AVOption;
identifier arr_name;
initializer list il;
initializer list[8] il1;
expression tail;
@@
AVOption arr_name[] = { il, { il1,
- tail
+ .unit = tail
}, ...  };

with some manual changes, as the script:
* has trouble with options defined inside macros
* sometimes does not handle options under an #else branch
* sometimes swallows whitespace
2024-02-14 14:53:41 +01:00
..
dnn_backend_common.c libavfiter/dnn_backend_openvino: Add multiple output support 2023-12-16 21:50:16 +08:00
dnn_backend_common.h
dnn_backend_openvino.c all: use designated initializers for AVOption.unit 2024-02-14 14:53:41 +01:00
dnn_backend_tf.c libavfilter/dnn_interface: use dims to represent shapes 2024-01-28 11:18:06 +08:00
dnn_interface.c avfilter/dnn: add log context to ff_get_dnn_module 2023-06-08 10:50:23 +08:00
dnn_io_proc.c libavfilter/dnn_interface: use dims to represent shapes 2024-01-28 11:18:06 +08:00
dnn_io_proc.h
Makefile lavfi/dnn: Remove DNN native backend 2023-04-28 11:07:41 +08:00
queue.c
queue.h
safe_queue.c
safe_queue.h