X-Git-Url: https://cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fx10tv.C;h=616ac5960e8d9b59a798eb9b0cb46a39df4427ec;hb=bd7011a86f60b4ef1abf11e2667373eba3a98c99;hp=d97b7453c18cda2e062c0f805876b089e6fcbe60;hpb=32a609a6bd1181993569399ab51f314dc7cb4fba;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/cinelerra/x10tv.C b/cinelerra-5.1/cinelerra/x10tv.C index d97b7453..616ac596 100644 --- a/cinelerra-5.1/cinelerra/x10tv.C +++ b/cinelerra-5.1/cinelerra/x10tv.C @@ -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); }