mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
v4l2: Properly fix Android build
The previous patch did not even compile on any possible platform or C standard. That commit also didn't have a proper commit message. Android ships Linux with a different signature for ioctl. They first released an ioctl with int as request type, and later "fixed" it by adding an override with unsign, which is still not matching Linux and BSD implementation which uses unsigned long int.
This commit is contained in:
parent
0e2d0adac5
commit
3b22a604b5
1 changed files with 2 additions and 2 deletions
|
@ -71,9 +71,9 @@ typedef gboolean (*GstV4l2UpdateFpsFunction) (GstV4l2Object * v4l2object);
|
|||
/* On Android NDK r18b the ioctl() signature uses 'unsigned' instead of
|
||||
* 'unsigned long' for the 2nd parameter */
|
||||
#ifdef __ANDROID__
|
||||
typedef ioctl_req_t unsigned
|
||||
typedef unsigned ioctl_req_t;
|
||||
#else
|
||||
typedef ioctl_req_t gulong
|
||||
typedef gulong ioctl_req_t;
|
||||
#endif
|
||||
|
||||
#define GST_V4L2_WIDTH(o) (GST_VIDEO_INFO_WIDTH (&(o)->info))
|
||||
|
|
Loading…
Reference in a new issue