| 1071 | } |
| 1072 | |
| 1073 | void ff_thread_release_ext_buffer(ThreadFrame *f) |
| 1074 | { |
| 1075 | av_refstruct_unref(&f->progress); |
| 1076 | f->owner[0] = f->owner[1] = NULL; |
| 1077 | if (f->f) |
| 1078 | av_frame_unref(f->f); |
| 1079 | } |
| 1080 | |
| 1081 | av_cold enum ThreadingStatus ff_thread_sync_ref(AVCodecContext *avctx, size_t offset) |
| 1082 | { |
nothing calls this directly
no test coverage detected