mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-02-08 02:39:57 +00:00
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
|
||
|---|---|---|
| .. | ||
| dnn_backend_common.c | ||
| dnn_backend_common.h | ||
| dnn_backend_openvino.c | ||
| dnn_backend_tf.c | ||
| dnn_interface.c | ||
| dnn_io_proc.c | ||
| dnn_io_proc.h | ||
| Makefile | ||
| queue.c | ||
| queue.h | ||
| safe_queue.c | ||
| safe_queue.h | ||