00001 00006 /* 00007 * Copyright (C) 2006 Lab. Visgraf/IMPA and AnimaMundi 00008 * 00009 * This program is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU General Public License 00011 * as published by the Free Software Foundation; either version 2 00012 * of the License, or (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00022 * 00023 */ 00024 00025 00026 #ifndef _VIDEO_DV_H 00027 #define _VIDEO_DV_H 00028 00029 #include <iostream> 00030 using std::cout; 00031 using std::endl; 00032 00033 #include <math.h> 00034 #include <limits.h> 00035 00036 #include "ieee1394io.h" 00037 #include "error.h" 00038 #include "frame.h" 00039 00040 extern "C" { 00041 #include "image.h" 00042 } 00043 00044 00045 Image *_dvvideo_open( void ); 00046 void _dvvideo_close( void ); 00047 Boolean _dvvideo_getimage( Image *i); 00048 Boolean _dvvideo_getframe( Frame *f ); 00049 int _dvvideo_gettype( void ); 00050 00051 void _dvvideo_stopReceive(); 00052 void _dvvideo_startReceive(); 00053 void _dvvideo_stopThread(); 00054 void _dvvideo_startThread(); 00055 00056 00057 #endif
1.4.7