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
この警告を取り除くにはどうすればよいですか?
ありがとうございました!