Browse Source

libdav1d: fix build after a recent API break

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.2
James Almer 7 years ago
parent
commit
56f50183f3
1 changed files with 9 additions and 3 deletions
  1. +9
    -3
      libavcodec/libdav1d.c

+ 9
- 3
libavcodec/libdav1d.c View File

@@ -142,12 +142,18 @@ static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
}

av_fifo_generic_write(dav1d->cache, &pkt, sizeof(pkt), libdav1d_fifo_write);
} else {
data = NULL;
}
}

res = dav1d_decode(dav1d->c, data, &p);
res = dav1d_send_data(dav1d->c, data);
if (res < 0) {
if (res == -EINVAL)
res = AVERROR_INVALIDDATA;
if (res != -EAGAIN)
return res;
}

res = dav1d_get_picture(dav1d->c, &p);
if (res < 0) {
if (res == -EINVAL)
res = AVERROR_INVALIDDATA;


Loading…
Cancel
Save