| 486 | } |
| 487 | |
| 488 | AVDictionaryWrapper FFmpegVersionHandler::getMetadata(AVFrameWrapper &frame) |
| 489 | { |
| 490 | AVDictionary *dict; |
| 491 | if (this->libVersion.avutil.major < 57) |
| 492 | dict = this->lib.avutil.av_frame_get_metadata(frame.getFrame()); |
| 493 | else |
| 494 | dict = frame.getMetadata(); |
| 495 | return AVDictionaryWrapper(dict); |
| 496 | } |
| 497 | |
| 498 | int FFmpegVersionHandler::seekFrame(AVFormatContextWrapper &fmt, int stream_idx, int64_t dts) |
| 499 | { |
nothing calls this directly
no test coverage detected