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
..
2023-11-18 19:55:42 +01:00
2023-11-18 19:55:42 +01:00
2023-11-16 20:53:18 +02:00
2023-09-28 00:17:47 +02:00
2023-11-16 20:53:18 +02:00
2023-11-22 19:28:40 +01:00
2022-07-30 11:42:06 +02:00
2022-07-30 11:42:06 +02:00
2024-02-08 14:02:55 +01:00
2024-01-01 20:12:52 +01:00
2024-01-01 20:12:52 +01:00
2024-01-05 09:29:05 +01:00
2024-01-07 13:59:02 +01:00
2024-01-01 20:12:52 +01:00