summaryrefslogtreecommitdiff
path: root/libavcodec/v4l2_m2m.c
diff options
context:
space:
mode:
authorAndriy Gelman <andriy.gelman@gmail.com>2020-08-02 14:36:04 -0400
committerAndriy Gelman <andriy.gelman@gmail.com>2020-08-02 14:36:15 -0400
commit9d2ba8980b87bf3643f8a4c30fa0e78b1e9a3c09 (patch)
tree9b94fc24e9e95406e5cc2708ccfa9c1ae1d77bb6 /libavcodec/v4l2_m2m.c
parent7c32e9cf93b712f8463573a59ed4e98fd10fa013 (diff)
downloadffmpeg-9d2ba8980b87bf3643f8a4c30fa0e78b1e9a3c09.tar.gz
avcodec/v4l2_m2m: reindent after last commit
Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
Diffstat (limited to 'libavcodec/v4l2_m2m.c')
-rw-r--r--libavcodec/v4l2_m2m.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/v4l2_m2m.c b/libavcodec/v4l2_m2m.c
index 944c1a2823..31600617fd 100644
--- a/libavcodec/v4l2_m2m.c
+++ b/libavcodec/v4l2_m2m.c
@@ -344,13 +344,13 @@ int ff_v4l2_m2m_codec_end(V4L2m2mPriv *priv)
return 0;
if (s->fd >= 0) {
- ret = ff_v4l2_context_set_status(&s->output, VIDIOC_STREAMOFF);
- if (ret)
- av_log(s->avctx, AV_LOG_ERROR, "VIDIOC_STREAMOFF %s\n", s->output.name);
+ ret = ff_v4l2_context_set_status(&s->output, VIDIOC_STREAMOFF);
+ if (ret)
+ av_log(s->avctx, AV_LOG_ERROR, "VIDIOC_STREAMOFF %s\n", s->output.name);
- ret = ff_v4l2_context_set_status(&s->capture, VIDIOC_STREAMOFF);
- if (ret)
- av_log(s->avctx, AV_LOG_ERROR, "VIDIOC_STREAMOFF %s\n", s->capture.name);
+ ret = ff_v4l2_context_set_status(&s->capture, VIDIOC_STREAMOFF);
+ if (ret)
+ av_log(s->avctx, AV_LOG_ERROR, "VIDIOC_STREAMOFF %s\n", s->capture.name);
}
ff_v4l2_context_release(&s->output);