Files
FFmpeg/libavcodec
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
..
2024-02-13 21:29:46 +02:00
2023-11-10 00:14:02 +01:00
2023-12-11 18:42:07 +02:00
2024-02-09 16:14:56 +01:00
2024-02-12 22:00:03 +02:00
2024-02-12 22:00:03 +02:00
2023-11-26 17:49:09 +01:00
2023-11-26 17:49:09 +01:00
2023-10-01 02:25:09 +02:00
2023-11-14 19:15:51 +02:00
2023-10-09 19:52:51 +03:00
2023-10-03 00:27:14 +02:00
2023-10-31 21:33:25 +02:00
2023-10-31 21:33:25 +02:00
2023-11-08 17:37:58 +11:00
2024-01-25 11:07:28 -05:00
2023-12-11 18:17:43 +02:00
2023-12-11 18:17:43 +02:00
2023-12-29 00:45:20 +01:00
2023-11-09 12:53:35 +01:00
2023-09-28 19:37:58 +02:00
2023-09-30 15:35:04 +02:00
2023-11-01 22:53:26 +02:00
2023-11-01 22:53:26 +02:00
2023-12-22 09:28:04 -03:00
2023-12-22 09:28:04 -03:00
2023-12-08 17:20:48 +02:00
2023-12-08 17:20:48 +02:00
2023-10-10 00:22:55 +02:00
2024-02-03 00:26:17 +01:00