diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-02-23 22:29:51 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-02-23 22:29:51 +0100 |
commit | 834c26ef6c6e90c342478b0ce181bd0c91af4062 (patch) | |
tree | 47142be949fffbc89c82ab29385e1f3337a19cc8 /linux/include | |
parent | f253110d360e84ef2572d6cde588352b40072db9 (diff) | |
download | mediapointer-dvb-s2-834c26ef6c6e90c342478b0ce181bd0c91af4062.tar.gz mediapointer-dvb-s2-834c26ef6c6e90c342478b0ce181bd0c91af4062.tar.bz2 |
Rename 'x, y' to 'left, top' to be consistent with struct v4l2_rect.
From: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/include')
-rw-r--r-- | linux/include/linux/videodev2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/include/linux/videodev2.h b/linux/include/linux/videodev2.h index 69577c73d..588c7694d 100644 --- a/linux/include/linux/videodev2.h +++ b/linux/include/linux/videodev2.h @@ -267,8 +267,8 @@ struct v4l2_pix_format __u32 sizeimage; enum v4l2_colorspace colorspace; __u32 priv; /* private data, depends on pixelformat */ - __u32 x; /* only valid if V4L2_CAP_VIDEO_OUTPUT_POS is set */ - __u32 y; /* only valid if V4L2_CAP_VIDEO_OUTPUT_POS is set */ + __u32 left; /* only valid if V4L2_CAP_VIDEO_OUTPUT_POS is set */ + __u32 top; /* only valid if V4L2_CAP_VIDEO_OUTPUT_POS is set */ }; /* Pixel format FOURCC depth Description */ |