v4l-utils: readd reworket patch to fix 'OTHER' protocol

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-11-08 18:31:53 +01:00
parent 8cc3a30690
commit 7a30bdab0d

View File

@ -0,0 +1,12 @@
diff -Naur v4l-utils-1.6.0/utils/keytable/keytable.c v4l-utils-1.6.0.patch/utils/keytable/keytable.c
--- v4l-utils-1.6.0/utils/keytable/keytable.c 2014-08-22 16:59:47.000000000 +0200
+++ v4l-utils-1.6.0.patch/utils/keytable/keytable.c 2014-11-08 18:10:31.497084484 +0100
@@ -487,6 +487,8 @@
ch_proto |= RC_5_SZ;
else if (!strcasecmp(p,"xmp"))
ch_proto |= XMP;
+ else if (!strcasecmp(p,"other"))
+ ch_proto |= OTHER;
else if (!strcasecmp(p,"all"))
ch_proto |= ~0;
else