| 1867 | } |
| 1868 | |
| 1869 | int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags) |
| 1870 | { |
| 1871 | int ret = reget_buffer_internal(avctx, frame, flags); |
| 1872 | if (ret < 0) |
| 1873 | av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n"); |
| 1874 | return ret; |
| 1875 | } |
| 1876 | |
| 1877 | typedef struct ProgressInternal { |
| 1878 | ThreadProgress progress; |
no test coverage detected