diff options
author | Aman Gupta <aman@tmm1.net> | 2019-08-23 13:39:32 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2019-09-02 15:06:38 -0700 |
commit | 6852b85020cf50a3a858e78b2b0e1539d7bc1eef (patch) | |
tree | 5b2ddf669ac327b36667d1bb7ab88938bc17f767 /libavcodec | |
parent | dc180cd81577d6c8bd561d804ce8f71711e4f1ac (diff) | |
download | ffmpeg-6852b85020cf50a3a858e78b2b0e1539d7bc1eef.tar.gz |
avcodec/v4l2_m2m_enc: fix typo in log message
Signed-off-by: Aman Gupta <aman@tmm1.net>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/v4l2_m2m_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |