mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-13 10:51:38 +00:00
avcodec/vbnenc: Add AV_CODEC_CAP_DR1
This encoder uses ff_get_encode_buffer(). Reviewed-by: Marton Balint <cus@passwd.hu> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
cc0a4fa630
commit
77ed56f0ec
@ -153,7 +153,7 @@ const FFCodec ff_vbn_encoder = {
|
||||
.p.long_name = NULL_IF_CONFIG_SMALL("Vizrt Binary Image"),
|
||||
.p.type = AVMEDIA_TYPE_VIDEO,
|
||||
.p.id = AV_CODEC_ID_VBN,
|
||||
.p.capabilities = AV_CODEC_CAP_SLICE_THREADS,
|
||||
.p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_SLICE_THREADS,
|
||||
.p.priv_class = &vbnenc_class,
|
||||
.init = vbn_init,
|
||||
FF_CODEC_ENCODE_CB(vbn_encode),
|
||||
|
Loading…
Reference in New Issue
Block a user