diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-05-31 13:28:35 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-05-31 13:41:10 +0200 |
commit | 64afc3bb935061660a0321671bf90206e8c5809b (patch) | |
tree | 688ed49a2329956edcfdde17fe4840c18438e15f /libavcodec | |
parent | cdfe06aeb25142bfda2664734ea97ca7780cc579 (diff) | |
download | ffmpeg-64afc3bb935061660a0321671bf90206e8c5809b.tar.gz |
lavc/lclenc: Enable frame-threading.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/lclenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/lclenc.c b/libavcodec/lclenc.c index 0afe5530ba..201d357898 100644 --- a/libavcodec/lclenc.c +++ b/libavcodec/lclenc.c @@ -197,5 +197,6 @@ AVCodec ff_zlib_encoder = { .init = encode_init, .encode2 = encode_frame, .close = encode_end, + .capabilities = CODEC_CAP_FRAME_THREADS | CODEC_CAP_INTRA_ONLY, .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_BGR24, AV_PIX_FMT_NONE }, }; |