proresdec: set CODEC_CAP_DR1, it appears this was forgotten.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-10-14 01:45:13 +02:00
parent da31e537c4
commit 8937afd39f

View File

@ -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,
};