1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
| /**
| * 叶海辉
| * QQ群121376426
| * http://blog.yundiantech.com/
| */
|
| #include <QApplication>
| #include <QTextCodec>
|
| #include "VideoPlayer/VideoPlayer.h"
|
| #undef main
| int main(int argc, char *argv[])
| {
| VideoPlayer *mPlayer = new VideoPlayer();
| // mPlayer->setVideoPlayerCallBack(this);
|
| mPlayer->startPlay("F:/test.rmvb");
|
| return 0;
| }
|
|