summaryrefslogtreecommitdiff
path: root/v4l2-apps
diff options
context:
space:
mode:
authorhans@rhel5-devel.localdomain <hans@rhel5-devel.localdomain>2009-03-11 13:07:08 +0100
committerhans@rhel5-devel.localdomain <hans@rhel5-devel.localdomain>2009-03-11 13:07:08 +0100
commit8f3a94f3f8727434e98bd197727e9a8a1a8285c4 (patch)
tree8bc61d8368edafcb2383560796707075c4fa1dd7 /v4l2-apps
parente6a853deb196982b1b857f651195a41695c324dd (diff)
downloadmediapointer-dvb-s2-8f3a94f3f8727434e98bd197727e9a8a1a8285c4.tar.gz
mediapointer-dvb-s2-8f3a94f3f8727434e98bd197727e9a8a1a8285c4.tar.bz2
libv4l: Add Philips SPC210NC to list of cams with upside down sensor
From: Hans de Goede <hdegoede@redhat.com> libv4l: Add Philips SPC210NC to list of cams with upside down sensor Priority: normal Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'v4l2-apps')
-rw-r--r--v4l2-apps/libv4l/ChangeLog5
-rw-r--r--v4l2-apps/libv4l/Makefile2
-rw-r--r--v4l2-apps/libv4l/libv4lconvert/libv4lconvert.c4
3 files changed, 8 insertions, 3 deletions
diff --git a/v4l2-apps/libv4l/ChangeLog b/v4l2-apps/libv4l/ChangeLog
index f64525126..cdb888892 100644
--- a/v4l2-apps/libv4l/ChangeLog
+++ b/v4l2-apps/libv4l/ChangeLog
@@ -1,3 +1,8 @@
+libv4l-0.5.2
+------------
+* Add Philips SPC210NC to list of cams with upside down sensor, reported by
+ Rieker Flaik
+
libv4l-0.5.1
------------
* Add support for software cropping from 352x288 -> 320x240 / 176x144 ->
diff --git a/v4l2-apps/libv4l/Makefile b/v4l2-apps/libv4l/Makefile
index 13f216bc1..bfc31a185 100644
--- a/v4l2-apps/libv4l/Makefile
+++ b/v4l2-apps/libv4l/Makefile
@@ -1,5 +1,5 @@
LIB_RELEASE=0
-V4L2_LIB_VERSION=$(LIB_RELEASE).5.1
+V4L2_LIB_VERSION=$(LIB_RELEASE).5.2
all clean install:
$(MAKE) -C libv4lconvert V4L2_LIB_VERSION=$(V4L2_LIB_VERSION) $@
diff --git a/v4l2-apps/libv4l/libv4lconvert/libv4lconvert.c b/v4l2-apps/libv4l/libv4lconvert/libv4lconvert.c
index 362ac1914..3e93d98cc 100644
--- a/v4l2-apps/libv4l/libv4lconvert/libv4lconvert.c
+++ b/v4l2-apps/libv4l/libv4lconvert/libv4lconvert.c
@@ -65,8 +65,8 @@ static const struct v4lconvert_pixfmt supported_dst_pixfmts[] = {
/* List of cams which need special flags */
static const struct v4lconvert_flags_info v4lconvert_flags[] = {
{ "SPC 200NC ", V4LCONVERT_ROTATE_180 },
- { "SPC 300NC ", V4LCONVERT_ROTATE_180 },
- { "USB Camera (0471:0325)", V4LCONVERT_ROTATE_180 }, /* SPC200NC */
+ { "SPC 300NC ", V4LCONVERT_ROTATE_180 }, /* Unconfirmed ! */
+ { "SPC210NC ", V4LCONVERT_ROTATE_180 },
{ "USB Camera (0471:0326)", V4LCONVERT_ROTATE_180 }, /* SPC300NC */
{ "USB Camera (093a:2476)", V4LCONVERT_ROTATE_180 }, /* Genius E-M 112 */
};