OSDN Git Service

proresdec: set CODEC_CAP_DR1, it appears this was forgotten.
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 13 Oct 2011 23:45:13 +0000 (01:45 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 14 Oct 2011 00:18:55 +0000 (02:18 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/proresdec.c

index 6f42902..51807bc 100644 (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,
 };