| 2867 | |
| 2868 | #if HAVE_THREADS |
| 2869 | static void vp8_replace_frame(VP8Frame *dst, const VP8Frame *src) |
| 2870 | { |
| 2871 | ff_progress_frame_replace(&dst->tf, &src->tf); |
| 2872 | av_refstruct_replace(&dst->seg_map, src->seg_map); |
| 2873 | av_refstruct_replace(&dst->hwaccel_picture_private, |
| 2874 | src->hwaccel_picture_private); |
| 2875 | } |
| 2876 | |
| 2877 | #define REBASE(pic) ((pic) ? (pic) - &s_src->frames[0] + &s->frames[0] : NULL) |
| 2878 |
no test coverage detected