You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
481 B
34 lines
481 B
|
|
#define _LARGEFILE64_SOURCE 1
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
|
|
#include "miniwebcam.h"
|
|
#include "video.h"
|
|
#include "convert.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <dirent.h>
|
|
#include <ctype.h>
|
|
#include <fcntl.h>
|
|
|
|
#ifdef BUILD_WINDOWS
|
|
#include <winsock2.h>
|
|
#include <io.h>
|
|
#include <ws2tcpip.h>
|
|
#else
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
#include <sys/stat.h>
|
|
|
|
VideoDevice::VideoDevice() {
|
|
debug ("");
|
|
};
|
|
|
|
|
|
VideoDevice::~VideoDevice() {
|
|
debug ("");
|
|
};
|
|
|