]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/libdav1d: fix build after a recent API break
authorJames Almer <jamrial@gmail.com>
Wed, 14 Nov 2018 13:05:25 +0000 (10:05 -0300)
committerJames Almer <jamrial@gmail.com>
Wed, 14 Nov 2018 13:05:25 +0000 (10:05 -0300)
Signed-off-by: James Almer <jamrial@gmail.com>
libavcodec/libdav1d.c

index 873adfda4037950467591b6de2e7e956fb567687..b19aee4e9edb965ba243c8c2a3f4f751b4b0812b 100644 (file)
@@ -140,12 +140,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;