diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-14 01:45:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-14 02:18:55 +0200 |
commit | 8937afd39f378ad3ae5bc2e54da6655680775e77 (patch) | |
tree | 9da2e2cb25679800dcd6bd0c4e286cf4b5b35172 | |
parent | da31e537c4b55063cc978cd44c467c88435f17ed (diff) | |
download | ffmpeg-8937afd39f378ad3ae5bc2e54da6655680775e77.tar.gz |
proresdec: set CODEC_CAP_DR1, it appears this was forgotten.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/proresdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, }; |