lavc/ljpegenc: Enable frame-threading.

This commit is contained in:
Carl Eugen Hoyos 2014-05-31 13:28:16 +02:00
parent b91bf48f00
commit cdfe06aeb2
1 changed files with 1 additions and 0 deletions

View File

@ -319,6 +319,7 @@ AVCodec ff_ljpeg_encoder = {
.init = ljpeg_encode_init,
.encode2 = ljpeg_encode_frame,
.close = ljpeg_encode_close,
.capabilities = CODEC_CAP_FRAME_THREADS | CODEC_CAP_INTRA_ONLY,
.pix_fmts = (const enum AVPixelFormat[]){
AV_PIX_FMT_BGR24 , AV_PIX_FMT_BGRA , AV_PIX_FMT_BGR0,
AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,