| 2501 | |
| 2502 | #if HAVE_THREADS |
| 2503 | static void ref_frames(Vp3DecodeContext *dst, const Vp3DecodeContext *src) |
| 2504 | { |
| 2505 | ff_progress_frame_replace(&dst->current_frame, &src->current_frame); |
| 2506 | ff_progress_frame_replace(&dst->golden_frame, &src->golden_frame); |
| 2507 | } |
| 2508 | |
| 2509 | static int vp3_update_thread_context(AVCodecContext *dst, const AVCodecContext *src) |
| 2510 | { |
no test coverage detected