| 1042 | } |
| 1043 | |
| 1044 | int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags) |
| 1045 | { |
| 1046 | int ret = thread_get_buffer_internal(avctx, f, flags); |
| 1047 | if (ret < 0) |
| 1048 | av_log(avctx, AV_LOG_ERROR, "thread_get_buffer() failed\n"); |
| 1049 | return ret; |
| 1050 | } |
| 1051 | |
| 1052 | int ff_thread_get_ext_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags) |
| 1053 | { |
no test coverage detected