Subversion Repositories shark

Rev

Rev 428 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
170 giacomo 1
/* Fast Frame Grabber for SHARK
2
 *
3
 * Giacomo Guidi
4
 * <giacomo@gandalf.sssup.it>
5
 *
6
 */
7
 
177 giacomo 8
#include <drivers/fg.h>
170 giacomo 9
 
428 giacomo 10
#include <linuxcomp.h>
11
 
541 giacomo 12
#include <linux/videodev2.h>
428 giacomo 13
 
541 giacomo 14
extern int bttv_ioctl_inode(int num, unsigned int cmg, void *arg);
170 giacomo 15
 
182 giacomo 16
int FG_init(unsigned int period, unsigned int wcet, unsigned int width,
17
                unsigned int height, unsigned int color, unsigned int channel) {
170 giacomo 18
 
541 giacomo 19
        return 0;
170 giacomo 20
 
21
}
22