1
0
Fork 0

avcodec/libdav1d: respect side data preference

Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
Niklas Haas 2024-02-19 12:46:21 +01:00 committed by Anton Khirnov
parent 133cbbe31e
commit 0b7aefe698
1 changed files with 3 additions and 2 deletions

View File

@ -541,8 +541,9 @@ static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
if (!res)
break;
if (!av_frame_new_side_data_from_buf(frame, AV_FRAME_DATA_A53_CC, buf))
av_buffer_unref(&buf);
res = ff_frame_new_side_data_from_buf(c, frame, AV_FRAME_DATA_A53_CC, &buf, NULL);
if (res < 0)
goto fail;
c->properties |= FF_CODEC_PROPERTY_CLOSED_CAPTIONS;
break;