[FFmpeg-cvslog] avcodec/v4l2_m2m_enc: fix typo in log message
Aman Gupta
git at videolan.org
Tue Sep 3 01:26:40 EEST 2019
ffmpeg | branch: master | Aman Gupta <aman at tmm1.net> | Fri Aug 23 13:39:32 2019 -0700| [6852b85020cf50a3a858e78b2b0e1539d7bc1eef] | committer: Aman Gupta
avcodec/v4l2_m2m_enc: fix typo in log message
Signed-off-by: Aman Gupta <aman at tmm1.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6852b85020cf50a3a858e78b2b0e1539d7bc1eef
---
libavcodec/v4l2_m2m_enc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/v4l2_m2m_enc.c b/libavcodec/v4l2_m2m_enc.c
index 8b17f3696c..27bb254fc1 100644
--- a/libavcodec/v4l2_m2m_enc.c
+++ b/libavcodec/v4l2_m2m_enc.c
@@ -261,7 +261,7 @@ static int v4l2_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
if (!output->streamon) {
ret = ff_v4l2_context_set_status(output, VIDIOC_STREAMON);
if (ret) {
- av_log(avctx, AV_LOG_ERROR, "VIDIOC_STREAMOFF failed on output context\n");
+ av_log(avctx, AV_LOG_ERROR, "VIDIOC_STREAMON failed on output context\n");
return ret;
}
}
More information about the ffmpeg-cvslog
mailing list