-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
32 lines (25 loc) · 683 Bytes
/
main.cpp
File metadata and controls
32 lines (25 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <iostream>
#include "camera/ccamera.h"
#include "saver/cyuvsaver.h"
#include "saver/cjpgsaver.h"
#include "saver/cvideosaver.h"
#include "sdlplayer/ccameraplayer.h"
#include "camerasock/ccamerasocktest.h"
#include "camerastream/ccamerastreamtest.h"
using namespace std;
int main()
{
// CCamera camera;
// CYUVSaver yuvSaver(camera);
// yuvSaver.Save();
// CJPGSaver jpgSaver(camera);
// jpgSaver.Save();
// CVideoSaver videoSaver(camera);
// videoSaver.Save();
// CCameraPlayer cameraPlayer(camera);
// cameraPlayer.Play();
CCameraSockTest cameraSockTest;
cameraSockTest.Start();
cout << "Hello World!" << endl;
return 0;
}