summaryrefslogtreecommitdiff
path: root/libavcodec/v4l2_m2m.c
diff options
context:
space:
mode:
authorAndriy Gelman <andriy.gelman@gmail.com>2020-01-12 23:11:30 -0500
committerMark Thompson <sw@jkqxz.net>2020-02-01 21:39:05 +0000
commitd85c84eb38e5845495dacfcef82265a433fdd043 (patch)
tree3419bba1aaf8f90cb9043fbebf4e252a0c27e0c5 /libavcodec/v4l2_m2m.c
parent73e23b404c93a339b5a77d013a7a1274e5b4e063 (diff)
avcodec/v4l2_m2m: Cosmetics
Change pointer symbol position. Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
Diffstat (limited to 'libavcodec/v4l2_m2m.c')
-rw-r--r--libavcodec/v4l2_m2m.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/v4l2_m2m.c b/libavcodec/v4l2_m2m.c
index 6f62e69412..d0bd4cd3d2 100644
--- a/libavcodec/v4l2_m2m.c
+++ b/libavcodec/v4l2_m2m.c
@@ -60,7 +60,7 @@ static inline int v4l2_mplane_video(struct v4l2_capability *cap)
return 0;
}
-static int v4l2_prepare_contexts(V4L2m2mContext* s, int probe)
+static int v4l2_prepare_contexts(V4L2m2mContext *s, int probe)
{
struct v4l2_capability cap;
void *log_ctx = s->avctx;
@@ -97,7 +97,7 @@ static int v4l2_prepare_contexts(V4L2m2mContext* s, int probe)
return AVERROR(EINVAL);
}
-static int v4l2_probe_driver(V4L2m2mContext* s)
+static int v4l2_probe_driver(V4L2m2mContext *s)
{
void *log_ctx = s->avctx;
int ret;
@@ -133,7 +133,7 @@ done:
return ret;
}
-static int v4l2_configure_contexts(V4L2m2mContext* s)
+static int v4l2_configure_contexts(V4L2m2mContext *s)
{
void *log_ctx = s->avctx;
int ret;
@@ -202,7 +202,7 @@ error:
* V4L2 M2M Interface
*
******************************************************************************/
-int ff_v4l2_m2m_codec_reinit(V4L2m2mContext* s)
+int ff_v4l2_m2m_codec_reinit(V4L2m2mContext *s)
{
void *log_ctx = s->avctx;
int ret;
@@ -335,7 +335,7 @@ static void v4l2_m2m_destroy_context(void *opaque, uint8_t *context)
int ff_v4l2_m2m_codec_end(V4L2m2mPriv *priv)
{
- V4L2m2mContext* s = priv->context;
+ V4L2m2mContext *s = priv->context;
int ret;
ret = ff_v4l2_context_set_status(&s->output, VIDIOC_STREAMOFF);