| 493 | } |
| 494 | |
| 495 | const FrameData *packet_data_c(AVPacket *pkt) |
| 496 | { |
| 497 | int ret = frame_data_ensure(&pkt->opaque_ref, 0); |
| 498 | return ret < 0 ? NULL : (const FrameData*)pkt->opaque_ref->data; |
| 499 | } |
| 500 | |
| 501 | int check_avoptions_used(const AVDictionary *opts, const AVDictionary *opts_used, |
| 502 | void *logctx, int decode) |
nothing calls this directly
no test coverage detected