diff options
author | James Almer <jamrial@gmail.com> | 2023-07-09 16:17:04 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-07-11 14:26:43 -0300 |
commit | 5ad78a26848ec8ab3eba42c546e9742374795749 (patch) | |
tree | ab7eda343449413a579a5cd724c212b20c1fc1d7 /libavcodec/libdav1d.c | |
parent | 62cb9d97c1f9a655d3d144d7cb2b1145f890ef20 (diff) | |
download | ffmpeg-5ad78a26848ec8ab3eba42c546e9742374795749.tar.gz |
avcodec/libdav1d: remove FF_CODEC_CAP_SETS_PKT_DTS flag
It has no effect on receive_frame() decoders.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/libdav1d.c')
-rw-r--r-- | libavcodec/libdav1d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libdav1d.c b/libavcodec/libdav1d.c index c263157a2a..11cdbca274 100644 --- a/libavcodec/libdav1d.c +++ b/libavcodec/libdav1d.c @@ -698,7 +698,7 @@ const FFCodec ff_libdav1d_decoder = { .flush = libdav1d_flush, FF_CODEC_RECEIVE_FRAME_CB(libdav1d_receive_frame), .p.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS, - .caps_internal = FF_CODEC_CAP_SETS_PKT_DTS | FF_CODEC_CAP_SETS_FRAME_PROPS | + .caps_internal = FF_CODEC_CAP_SETS_FRAME_PROPS | FF_CODEC_CAP_AUTO_THREADS, .p.priv_class = &libdav1d_class, .p.wrapper_name = "libdav1d", |