[FFmpeg-cvslog] avcodec/v4l2_m2m: Fix typo in log message and cosmetics
Andriy Gelman
git at videolan.org
Sun Feb 16 22:34:12 EET 2020
ffmpeg | branch: master | Andriy Gelman <andriy.gelman at gmail.com> | Sun Feb 16 14:31:44 2020 -0500| [8578433d203cf3e2a902aebb61c8260e82c750d8] | committer: Mark Thompson
avcodec/v4l2_m2m: Fix typo in log message and cosmetics
Signed-off-by: Andriy Gelman <andriy.gelman at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8578433d203cf3e2a902aebb61c8260e82c750d8
---
libavcodec/v4l2_m2m.c | 4 ++--
libavcodec/v4l2_m2m_enc.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/v4l2_m2m.c b/libavcodec/v4l2_m2m.c
index d0bd4cd3d2..2d21f910bc 100644
--- a/libavcodec/v4l2_m2m.c
+++ b/libavcodec/v4l2_m2m.c
@@ -264,8 +264,8 @@ int ff_v4l2_m2m_codec_full_reinit(V4L2m2mContext *s)
ret = ff_v4l2_context_set_status(&s->capture, VIDIOC_STREAMOFF);
if (ret) {
- av_log(log_ctx, AV_LOG_ERROR, "capture VIDIOC_STREAMOFF\n");
- goto error;
+ av_log(log_ctx, AV_LOG_ERROR, "capture VIDIOC_STREAMOFF\n");
+ goto error;
}
/* release and unmmap the buffers */
diff --git a/libavcodec/v4l2_m2m_enc.c b/libavcodec/v4l2_m2m_enc.c
index 98b9dfc2c0..c9f1741bfd 100644
--- a/libavcodec/v4l2_m2m_enc.c
+++ b/libavcodec/v4l2_m2m_enc.c
@@ -83,7 +83,7 @@ static inline int v4l2_get_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed i
ret = ioctl(s->fd, VIDIOC_G_EXT_CTRLS, &ctrls);
if (ret < 0) {
- av_log(s->avctx, AV_LOG_WARNING, "Failed to set %s\n", name);
+ av_log(s->avctx, AV_LOG_WARNING, "Failed to get %s\n", name);
return ret;
}
More information about the ffmpeg-cvslog
mailing list