| 365 | } |
| 366 | |
| 367 | void request_normal_frame() override { |
| 368 | if (device && device->frame) { |
| 369 | auto &frame = device->frame; |
| 370 | frame->pict_type = AV_PICTURE_TYPE_NONE; |
| 371 | frame->flags &= ~AV_FRAME_FLAG_KEY; |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | void invalidate_ref_frames(int64_t first_frame, int64_t last_frame) override { |
| 376 | BOOST_LOG(error) << "Encoder doesn't support reference frame invalidation"; |
nothing calls this directly
no outgoing calls
no test coverage detected