00001 #ifndef DV1394INPUT_H 00002 #define DV1394INPUT_H 00003 00004 00005 00006 00007 class DV1394Input : public Thread 00008 { 00009 public: 00010 DV1394Input(VideoDevice *device); 00011 ~DV1394Input(); 00012 00013 void start(); 00014 void run(); 00015 00016 int done; 00017 VideoDevice *device; 00018 int fd; 00019 }; 00020 00021 00022 00023 00024 00025 00026 00027 #endif
1.4.4