summaryrefslogtreecommitdiffstats
path: root/libavcodec/libdav1d.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2019-03-12 19:18:14 -0300
committerJames Almer <jamrial@gmail.com>2019-03-12 19:18:14 -0300
commit36bb2cc200d0ee4c43de06f030d7956949b1f88c (patch)
treef40ab2c3b71e1f363c0b490e900a15a6aafd58a9 /libavcodec/libdav1d.c
parent28746a0e2088d762817795a0833df8633d8be6d2 (diff)
downloadffmpeg-streaming-36bb2cc200d0ee4c43de06f030d7956949b1f88c.zip
ffmpeg-streaming-36bb2cc200d0ee4c43de06f030d7956949b1f88c.tar.gz
avcodec/libdav1d: consistently use AVERROR return values
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/libdav1d.c')
-rw-r--r--libavcodec/libdav1d.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/libdav1d.c b/libavcodec/libdav1d.c
index 9b697a8..948e9f4 100644
--- a/libavcodec/libdav1d.c
+++ b/libavcodec/libdav1d.c
@@ -185,9 +185,9 @@ static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
res = dav1d_send_data(dav1d->c, data);
if (res < 0) {
- if (res == -EINVAL)
+ if (res == AVERROR(EINVAL))
res = AVERROR_INVALIDDATA;
- if (res != -EAGAIN)
+ if (res != AVERROR(EAGAIN))
return res;
}
@@ -197,9 +197,9 @@ static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
res = dav1d_get_picture(dav1d->c, p);
if (res < 0) {
- if (res == -EINVAL)
+ if (res == AVERROR(EINVAL))
res = AVERROR_INVALIDDATA;
- else if (res == -EAGAIN && c->internal->draining)
+ else if (res == AVERROR(EAGAIN) && c->internal->draining)
res = AVERROR_EOF;
av_free(p);
OpenPOWER on IntegriCloud