Skip to content

Commit

Permalink
avcodec/v210enc: suppport frame thread for v210
Browse files Browse the repository at this point in the history
Signed-off-by: Limin Wang <[email protected]>
  • Loading branch information
lance-lmwang committed Dec 22, 2021
1 parent 8ecd7cd commit 2ac8bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/v210enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ const AVCodec ff_v210_encoder = {
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_V210,
.capabilities = AV_CODEC_CAP_DR1,
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
.priv_data_size = sizeof(V210EncContext),
.init = encode_init,
.encode2 = encode_frame,
Expand Down

0 comments on commit 2ac8bce

Please sign in to comment.