diff options
author | Linjie Fu <linjie.fu@intel.com> | 2020-02-28 00:14:32 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-02-28 19:40:05 +0100 |
commit | dfa1fc17a54a31e51f36f1f764dfdc76062ffe78 (patch) | |
tree | a187a792af582097e3581bb61b3507699480c7ec | |
parent | 220c7dadc4988e4ef52e93b098e6f02283f7852a (diff) | |
download | ffmpeg-dfa1fc17a54a31e51f36f1f764dfdc76062ffe78.tar.gz |
lavc/v4l2_context: fix compile warning for incompatible pointer type
Signed-off-by: Linjie Fu <linjie.fu@intel.com>
Reviewed-by: Andriy Gelman <andriy.gelman@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/v4l2_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v4l2_context.c b/libavcodec/v4l2_context.c index 95a2bfa6a4..8110bbb555 100644 --- a/libavcodec/v4l2_context.c +++ b/libavcodec/v4l2_context.c @@ -48,7 +48,7 @@ static inline V4L2m2mContext *ctx_to_m2mctx(V4L2Context *ctx) container_of(ctx, V4L2m2mContext, capture); } -static inline AVClass *logger(V4L2Context *ctx) +static inline AVCodecContext *logger(V4L2Context *ctx) { return ctx_to_m2mctx(ctx)->avctx; } |