diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-15 03:10:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-15 03:12:13 +0100 |
commit | bd0497b28bc2fac669a6a528579ecf66c817ffc5 (patch) | |
tree | 20a5716ea29087e522e5ec42e79492a843ebf9b5 | |
parent | 4d95207938252d6683411bc2f51f05c3d02749a2 (diff) | |
download | ffmpeg-bd0497b28bc2fac669a6a528579ecf66c817ffc5.tar.gz |
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.c | 2 |
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, }; |