forked from leixiaohua1020/VideoEye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VideoEyeDlg.h
239 lines (208 loc) · 5.46 KB
/
VideoEyeDlg.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
*
*
* VideoEye
*
* 雷霄骅 Lei Xiaohua
* 中国传媒大学/数字电视技术
* Communication University of China / Digital TV Technology
* http://blog.csdn.net/leixiaohua1020
*
*/
// VideoEyeDlg.h : 头文件
//
#pragma once
//TeeChart
//Tchart
#include "stdafx.h"
#include "ve_play.h"
//系统对话框
#include "Welcome.h"
#include "InputList.h"
#include "Videodecode.h"
#include "Audiodecode.h"
#include "Sysinfo.h"
#include "Dataoutput.h"
#include "Rawanalysis.h"
#include "Assistantmediainfo.h"
#include "Optplayer.h"
#include "Dfanalysis.h"
//多线程
UINT Thread_Play(LPVOID lpParam);
//存储播放地址
// CVideoEyeDlg 对话框
class CVideoEyeDlg : public CDialogEx
{
// 构造
public:
CVideoEyeDlg(CWnd* pParent = NULL); // 标准构造函数
// 对话框数据
enum { IDD = IDD_INTERNETVE };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
CWinThread *pThreadPlay;
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
virtual BOOL PreTranslateMessage(MSG* pMsg);
public:
//自绘按钮
CBitmapButton okbutton;
CBitmapButton seek_bbutton;
CBitmapButton seek_fbutton;
CBitmapButton pausebutton;
CBitmapButton stopbutton;
CBitmapButton seekstepbutton;
CBitmapButton fullscreenbutton;
CBitmapButton aboutbutton;
CBitmapButton exitbutton;
afx_msg void OnBnClickedOk();
int GetURL();
char url[MAX_URL_LENGTH];
CEdit m_decoder_name;
CEdit m_pix_fmt;
CEdit m_wxh;
CEdit m_bitrate;
CEdit m_extention;
CEdit m_metadata;
afx_msg void OnClickedStop();
CSpinButtonCtrl m_spin_delay;
int m_edit_delay;
afx_msg void OnChangeEditDelaytime();
afx_msg void OnClickedOutput();
afx_msg void OnBnClickedAbout();
CEdit m_framerate;
afx_msg void OnBnClickedPause();
int pause_flag;
void SystemClear();
void OnTimer(UINT nIDEvent);
//----------
int buffer_remain;
int buffer_ptr_location;
int buffer_end;
int packet_size;
CEdit m_timelong;
afx_msg void OnBnClickedInputurlbutton();
CEdit m_input_format;
CEdit m_input_protocol;
//对话框对象--------
InputList *inputlist;
Videodecode *videodecode;
Audiodecode *audiodecode;
Dataoutput *dataoutput;
Sysinfo *sysinfo;
Rawanalysis *rawanalysis;
Assistantmediainfo *assistantmi;
Optplayer *optplayer;
Dfanalysis *dfanalysis;
//------------------
CEdit m_decoder_name_au;
CEdit m_sample_rate_au;
afx_msg void OnDropFiles(HDROP hDropInfo);
CEdit m_inputurl;
afx_msg void OnBnClickedOpenInputlist();
afx_msg void OnBnClickedVideodecode();
afx_msg void OnBnClickedAudiodecode();
afx_msg void OnHelpDoc();
afx_msg void OnHelpHomepage();
afx_msg void OnSysinfoSPixformat();
afx_msg void OnBnClickedFullscreen();
afx_msg void OnBnClickedSeekF();
afx_msg void OnBnClickedSeekB();
afx_msg void OnBnClickedSeekStep();
afx_msg void OnSeekF10();
afx_msg void OnSeekB10();
afx_msg void OnSeekF600();
afx_msg void OnSeekB600();
afx_msg void OnResize50();
afx_msg void OnResize75();
afx_msg void OnResize100();
afx_msg void OnResize125();
afx_msg void OnResize150();
afx_msg void OnResize175();
afx_msg void OnResize200();
afx_msg void OnResize300();
afx_msg void OnResize400();
afx_msg void OnReaspect11();
afx_msg void OnReaspect32();
afx_msg void OnReaspect43();
afx_msg void OnReaspect54();
afx_msg void OnReaspect149();
afx_msg void OnReaspect1410();
afx_msg void OnReaspect169();
afx_msg void OnReaspect1610();
afx_msg void OnReaspect235100();
afx_msg void OnWindowYuv();
afx_msg void OnWindowY();
afx_msg void OnWindowU();
afx_msg void OnWindowV();
afx_msg void OnWindowRgb();
afx_msg void OnWindowR();
afx_msg void OnWindowG();
afx_msg void OnWindowB();
afx_msg void OnWindowAWave();
afx_msg void OnWindowARdft();
afx_msg void OnDataOutputMA();
afx_msg void OnDataOutputMV();
afx_msg void OnDataOutputMO();
afx_msg void OnDataOutputRYuv();
afx_msg void OnDataOutputRY();
afx_msg void OnDataOutputRU();
afx_msg void OnDataOutputRV();
afx_msg void OnDataOutput();
afx_msg void OnSpecialPRtmp();
CEdit m_channels_au;
afx_msg void OnAssistantMediainfo();
afx_msg void OnSpecialVIJpg();
afx_msg void OnRawanalysisHistogram();
afx_msg void OnRawanalysisCanny();
afx_msg void OnRawanalysisContour();
afx_msg void OnRawanalysis2ddft();
afx_msg void OnRawanalysis();
afx_msg void OnRawanalysisFaceDetect();
afx_msg void OnSpecialFFlv();
afx_msg void OnSpecialAAac();
afx_msg void OnSpecialFTs();
afx_msg void OnSpecialVH264();
void ResetBtn();
void ActiveBtn();
afx_msg void OnOptPlayer();
CSliderCtrl m_playprogress;
void InitBitmapButton();
void InitSubWindow();
void FreeSubWindow();
CEdit m_aqsize;
CEdit m_vqsize;
CEdit m_duration;
CEdit m_currentclock;
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
CEdit m_avdiff;
CToolTipCtrl m_tooltip;
void InitTooltip();
afx_msg void OnDfanalysis();
afx_msg void OnRawanalysisY();
afx_msg void OnRawanalysisU();
afx_msg void OnRawanalysisV();
afx_msg void OnRawanalysisR();
afx_msg void OnRawanalysisG();
afx_msg void OnRawanalysisB();
afx_msg void OnTopmostAlways();
afx_msg void OnTopmostNever();
//是否处于播放阶段
int is_playing;
// afx_msg void OnSpecialAbout();
afx_msg void OnLangCn();
afx_msg void OnLangEn();
afx_msg void OnCancel();
afx_msg void OnSysinfo();
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
afx_msg void OnWindowstretchKeepratio();
afx_msg void OnWindowstretchResize();
};