Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-10-14 03:45:13 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-10-14 04:18:55 +0400
commit8937afd39f378ad3ae5bc2e54da6655680775e77 (patch)
tree9da2e2cb25679800dcd6bd0c4e286cf4b5b35172 /libavcodec/proresdec.c
parentda31e537c4b55063cc978cd44c467c88435f17ed (diff)
proresdec: set CODEC_CAP_DR1, it appears this was forgotten.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/proresdec.c')
-rw-r--r--libavcodec/proresdec.c2
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,
};