python函数指针,Python ctypes和函数指针

This is related to my other question, but I felt like I should ask it in a new question.

Basically FLAC uses function pointers for callbacks, and to implement callbacks with ctypes, you use CFUNCTYPE to prototype them, and then you use the prototype() function to create them.

The problem I have with this is that I figured that I would create my callback function as such (I am not showing the structures that I have recreated, FLAC__Frame is a Structure):

write_callback_prototype = CFUNCTYPE(c_int, c_void_p,

POINTER(FLAC__Frame),

POINTER(c_int32), v_void_p)

The problem that I have is the implementation. FLAC__Frame is never instantiated by the programmer, it's only called from from the initialization function, and the processing functions.I have to write the callback function myself, but he problem is that I don't know how I would do this, so if anyone knows how I should do this, then some help would be greatly appreciated.

解决方案

According to the ctypes callback docs you can define python function

def my_callback(a, p, frame, p1, p2)

pass

and then create a pointer to a C callable function like this:

callback = write_callback_prototype(my_callback)

This function pointer can then be passed into FLAC

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值