Skip to content

Commit

Permalink
media: uapi: new file needs types.h
Browse files Browse the repository at this point in the history
Today's linux-next build (x86_64 allmodconfig) failed like this:

	include/media/vp8-ctrls.h:25:2: error: unknown type name '__s8'
	  __s8 quant_update[4];
	  ^~~~
	...
	include/media/vp8-ctrls.h:107:2: error: unknown type name '__u64'
	  __u64 flags;
	  ^~~~~

Caused by commit a57d6ac ("media: uapi: Add VP8 stateless decoder API")

Fixes: a57d6ac ("media: uapi: Add VP8 stateless decoder API")
Signed-off-by: Stephen Rothwell <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
sfrothwell authored and mchehab committed Jul 23, 2019
1 parent 66193b2 commit 967b109
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/media/vp8-ctrls.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
#ifndef _VP8_CTRLS_H_
#define _VP8_CTRLS_H_

#include <linux/types.h>

#define V4L2_PIX_FMT_VP8_FRAME v4l2_fourcc('V', 'P', '8', 'F')

#define V4L2_CID_MPEG_VIDEO_VP8_FRAME_HEADER (V4L2_CID_MPEG_BASE + 2000)
Expand Down

0 comments on commit 967b109

Please sign in to comment.