From 8937afd39f378ad3ae5bc2e54da6655680775e77 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 14 Oct 2011 01:45:13 +0200 Subject: [PATCH] proresdec: set CODEC_CAP_DR1, it appears this was forgotten. Signed-off-by: Michael Niedermayer --- libavcodec/proresdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/proresdec.c b/libavcodec/proresdec.c index 6f4290253b..51807bc7dd 100644 --- a/libavcodec/proresdec.c +++ b/libavcodec/proresdec.c @@ -589,5 +589,5 @@ AVCodec ff_prores_decoder = { .close = decode_close, .decode = decode_frame, .long_name = NULL_IF_CONFIG_SMALL("ProRes"), - .capabilities = CODEC_CAP_SLICE_THREADS, + .capabilities = CODEC_CAP_DR1 | CODEC_CAP_SLICE_THREADS, }; -- 2.11.0