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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-02-15 05:10:09 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-02-15 05:12:13 +0300
commitbd0497b28bc2fac669a6a528579ecf66c817ffc5 (patch)
tree20a5716ea29087e522e5ec42e79492a843ebf9b5
parent4d95207938252d6683411bc2f51f05c3d02749a2 (diff)
avcodec/cfhd: Temporary disable frame threading until related bugs have been fixed
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/cfhd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cfhd.c b/libavcodec/cfhd.c
index 5c15d9bb04..d6d831b6cf 100644
--- a/libavcodec/cfhd.c
+++ b/libavcodec/cfhd.c
@@ -756,6 +756,6 @@ AVCodec ff_cfhd_decoder = {
.init = cfhd_decode_init,
.close = cfhd_close_decoder,
.decode = cfhd_decode,
- .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
+ .capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};