| 557 | } |
| 558 | |
| 559 | void *xcw_native_h264_encoder_create(xcw_native_frame_callback callback, |
| 560 | void *user_data, char **error_message) { |
| 561 | (void)callback; |
| 562 | (void)user_data; |
| 563 | xcw_set_error(error_message, |
| 564 | "H.264 encoding is only available in the macOS native bridge."); |
| 565 | return NULL; |
| 566 | } |
| 567 | |
| 568 | void xcw_native_h264_encoder_destroy(void *handle) { (void)handle; } |
| 569 |
no test coverage detected