| 509 | } |
| 510 | |
| 511 | void avpriv_request_sample(void *avc, const char *msg, ...) |
| 512 | { |
| 513 | va_list argument_list; |
| 514 | |
| 515 | va_start(argument_list, msg); |
| 516 | missing_feature_sample(1, avc, msg, argument_list); |
| 517 | va_end(argument_list); |
| 518 | } |
| 519 | |
| 520 | void avpriv_report_missing_feature(void *avc, const char *msg, ...) |
| 521 | { |
no test coverage detected