Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / x10tv.C
index d97b7453c18cda2e062c0f805876b089e6fcbe60..616ac5960e8d9b59a798eb9b0cb46a39df4427ec 100644 (file)
@@ -1,3 +1,23 @@
+/*
+ * CINELERRA
+ * Copyright (C) 2016-2020 William Morrow
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published
+ * by the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ * USA
+ */
+
 #ifdef HAVE_X10TV
 
 #include "channelinfo.h"
@@ -118,7 +138,7 @@ X10TV *X10TV::probe(MWindow *mwindow)
 {
        int ver = -1, ifds[16];
        int nfds = open_usb_inputs(0x0bc7, 0x0004, ver, ifds, 16);
-       if( !nfds ) return 0;
+       if( nfds <= 0 ) return 0;
        printf("detected ATI X10 remote, ver=0x%04x\n", ver);
        return new X10TV(mwindow, ifds, nfds);
 }