diff options
author | James Almer <jamrial@gmail.com> | 2022-01-06 20:07:07 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-01-06 23:05:12 -0300 |
commit | c8df72fce5a8407dfc1b3998a4108463247412ef (patch) | |
tree | 5d195e991bf4cd9740c46c56b9449a2729d318a0 | |
parent | 761a65106bcb1b64ebdb847aa1cf14f3586e282b (diff) | |
download | ffmpeg-c8df72fce5a8407dfc1b3998a4108463247412ef.tar.gz |
avcodec/libdav1d: honor the requested strict_std_compliance level on supported builds
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit 3e17e0e5eff896f43654635bd3219da56f807f11)
-rw-r--r-- | libavcodec/libdav1d.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/libdav1d.c b/libavcodec/libdav1d.c index bbc81a9dc9..8e45f533cb 100644 --- a/libavcodec/libdav1d.c +++ b/libavcodec/libdav1d.c @@ -236,6 +236,9 @@ static av_cold int libdav1d_init(AVCodecContext *c) s.all_layers = dav1d->all_layers; if (dav1d->operating_point >= 0) s.operating_point = dav1d->operating_point; +#if FF_DAV1D_VERSION_AT_LEAST(6,2) + s.strict_std_compliance = c->strict_std_compliance > 0; +#endif #if FF_DAV1D_VERSION_AT_LEAST(6,0) if (dav1d->frame_threads || dav1d->tile_threads) |