gpt4 book ai didi

具有2个不同签名的共享库的调用方法(未知目标系统)

转载 作者:行者123 更新时间:2023-11-30 17:50:13 27 4
gpt4 key购买 nike

在我的程序中,我使用共享库的方法。

我的程序是为数十万种不同的设备(Android)编译的,我无法为每个目标系统提供特定的二进制文件。

目标设备上共享库的方法可能有 2 个不同的签名:

系统A

int (*open_output_stream)(
struct audio_hw_device *dev, // equal on all systems
audio_io_handle_t handle, // unimportant
audio_devices_t devices, // unimportant
audio_output_flags_t flags, // unimportant
struct audio_config *config, // unimportant
struct audio_stream_out **stream_out // equal on all systems
);

系统B

int (*open_output_stream)(
struct audio_hw_device *dev, // equal on all systems
uint32_t devices, // unimportant
int *format, // unimportant
uint32_t *channels, // unimportant
uint32_t *sample_rate, // unimportant
struct audio_stream_out **out // equal on all systems
);

在我的代码中,我需要使用第一个参数(struct audio_hw_device)和最后一个参数(struct audio_stream_out)调用该方法以获得我需要的结果。

中间的其他 4 个参数对我来说并不重要,我会将它们替换为 0 或 NULL。

谁能告诉我是否可以直接调用这些方法

audio_hw_device_t *outHwDev

int res = open_output_stream)(
outHwDev, // equal on all systems
NULL or 0 ?, // unimportant
NULL or 0 ?, // unimportant
NULL or 0 ?, // unimportant
NULL or 0 ?, // unimportant
&outStream // equal on all systems
);

或者在 C: 中可能有类似“try{callFunction}(catch UnknownMethodException){}”的东西吗? :)

没有官方的头文件,我必须自己定义它,但这在这里应该很重要。

最佳答案

有什么方法可以检测您正在运行的系统吗?如果是这样,您可以在自己的代码中提供包装器:

int systema_open_output_stream(
struct audio_hw_device *dev,
struct audio_stream_out **out
)
{
audio_io_handle_t handle; // unimportant
audio_devices_t devices; // unimportant
audio_output_flags_t flags; // unimportant
struct audio_config *config; // unimportant

return open_output_stream_a(dev, handle, devices, flags, config, out)
}

int systemb_output_stream(struct audio_hw_device *dev,
struct audio_stream_out **out
)
{
uint32_t devices; // unimportant
int *format; // unimportant
uint32_t *channels; // unimportant
uint32_t *sample_rate; // unimportant

return open_output_stream_b(dev, devices, format, channels, sample_rate, out);
}

if (is_system_a())
out_func = &systema_output_stream;
else
out_func = &systemb_output_stream;

int res = out_func(dev, out);

关于具有2个不同签名的共享库的调用方法(未知目标系统),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17404921/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com