| 203 | #define AV_ONCE_INIT 0 |
| 204 | |
| 205 | static inline int ff_thread_once(char *control, void (*routine)(void)) |
| 206 | { |
| 207 | if (!*control) { |
| 208 | routine(); |
| 209 | *control = 1; |
| 210 | } |
| 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | #endif |
| 215 |
no outgoing calls
no test coverage detected