【发布时间】:2012-12-05 22:25:11
【问题描述】:
我在我的 iPhone 项目中使用 FFMPeg,但在使用 AVFrame *pFrame 时收到警告,如下所示:
AVFrame *pFrame
uint8_t *data[AV_NUM_DATA_POINTERS];
...
pFrame->data
这是我收到的警告:
Passing 'uint8_t *[8]' to parameter of type 'const uint8_t *const *' (aka 'const unsigned char *const *') discards qualifiers in nested pointer types
如何消除此警告?
谢谢!
【问题讨论】:
标签: iphone objective-c c cocoa-touch ffmpeg