[FFmpeg-cvslog] avcodec/v4l2_context: Use AVERROR macro
Andriy Gelman
git at videolan.org
Tue Jan 14 20:25:12 EET 2020
ffmpeg | branch: master | Andriy Gelman <andriy.gelman at gmail.com> | Sun Jan 12 23:11:28 2020 -0500| [8a8966295fbc9278042f4be76b795fea39f9a810] | committer: Michael Niedermayer
avcodec/v4l2_context: Use AVERROR macro
Signed-off-by: Andriy Gelman <andriy.gelman at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8a8966295fbc9278042f4be76b795fea39f9a810
---
libavcodec/v4l2_context.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/v4l2_context.c b/libavcodec/v4l2_context.c
index bdc2b84153..1bfa8b2cec 100644
--- a/libavcodec/v4l2_context.c
+++ b/libavcodec/v4l2_context.c
@@ -207,7 +207,7 @@ static int v4l2_handle_event(V4L2Context *ctx)
ret = ff_v4l2_m2m_codec_full_reinit(s);
if (ret) {
av_log(logger(ctx), AV_LOG_ERROR, "v4l2_m2m_codec_full_reinit\n");
- return -EINVAL;
+ return AVERROR(EINVAL);
}
goto reinit_run;
}
@@ -221,7 +221,7 @@ static int v4l2_handle_event(V4L2Context *ctx)
ret = ff_v4l2_m2m_codec_reinit(s);
if (ret) {
av_log(logger(ctx), AV_LOG_ERROR, "v4l2_m2m_codec_reinit\n");
- return -EINVAL;
+ return AVERROR(EINVAL);
}
goto reinit_run;
}
More information about the ffmpeg-cvslog
mailing list