-
Notifications
You must be signed in to change notification settings - Fork 0
/
CLS_DlgStreamPusher.h
489 lines (431 loc) · 12.7 KB
/
CLS_DlgStreamPusher.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
/*************************************************************
//module_name: 推流器
//module_func: 将本地文件/实时音视频流解码输出到URL地址,
通过rtmp进行流推送
//module_owner: Young
//module_time: 2015-08-17 15:43
**************************************************************/
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <windows.h>
#include <math.h>
#include <string>
#include <map>
#include <vector>
using namespace std;
extern "C"
{
#include "libavformat/avformat.h"
#include "libavcodec/avcodec.h"
#include "libswscale/swscale.h"
#include "libavutil/avutil.h"
#include "libavutil/audio_fifo.h"
#include "libavutil/mathematics.h"
#include "libswresample/swresample.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/time.h"
#include "libavdevice/avdevice.h"
#include "inttypes.h"
#include "SDL.h"
#include "SDL_thread.h"
};
#include "afxcmn.h"
#include "afxwin.h"
#undef main
//DirectShow
#include "dshow.h" //包含ICreateDevEnum
//opengl
#include "freeglut.h"
#define COLOR_BLACK RGB(0, 0, 0)
#define AUDIO_BUF_SIZE 1024
#define MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32bit audio
#define SAMPLE_ARRAY_SIZE (8 * 65536)
#define FF_ALLOC_EVENT (SDL_USEREVENT)
#define FF_AUDIO_REFRESH_EVENT (SDL_USEREVENT + 1)
#define FF_VIDEO_REFRESH_EVENT (SDL_USEREVENT + 2)
#define FF_BREAK_EVENT (SDL_USEREVENT + 3)
#define FF_QUIT_EVENT (SDL_USEREVENT + 10)
#define MAX_FILE_PATH 320
enum DeviceType{
n_Video = 0, //视频
n_Audio = 1 //音频
};
typedef struct AudioParams {
int freq;
int channels;
int channel_layout;
enum AVSampleFormat fmt;
} AudioParams;
enum ShowMode {
SHOW_MODE_NONE = -1,
SHOW_MODE_VIDEO = 0,
SHOW_MODE_WAVES = 1,
SHOW_MODE_RDFT = 2,
SHOW_MODE_NB = 3
};
typedef struct stream_info{
AVFormatContext *m_pFormatCtx;
SDL_Window *m_pShowScreen; //音视频显示SDL窗口
SDL_Surface *m_pScreenSurface; //与screen绑定的变量
int m_xLeft; //显示窗体的坐标及大小
int m_yTop;
int m_width;
int m_height;
int m_iAbortRequest; //退出标记
int m_iRefresh; //刷新标记
int m_iShowMode; //显示模式
int m_iPaused; //暂停标记
SDL_Renderer *m_pSdlRender;
SDL_Texture *m_pSdlTexture;
/************************音频相关参数-start*********************/
SDL_Thread *m_pAudioThr; //音频测试线程
SDL_Thread *m_pAudioRefreshThr; //音频刷新线程句柄
AVStream *m_pAudioStream; //音频流
AVFrame *m_pAudioFrame; //音频帧
AVAudioFifo *m_pAudioFifo;
SDL_mutex *m_pAudioMutex;
AudioParams m_AudioPrm;
uint8_t *m_pAudioBuf;
int m_iAudioBufSize;
int m_iAudioBufIndex;
int m_iAduioPktSize;
int m_iAudioWriteBufSize;
int m_iAudioLastStart;
uint8_t m_uSilenceBuf[AUDIO_BUF_SIZE];
int16_t m_iSampleArray[SAMPLE_ARRAY_SIZE];
int m_iSampleArrayIndex;
/************************音频相关参数-end***********************/
/************************视频相关参数-satrt*********************/
SDL_Thread *m_pVideoThr; //视频测试线程
SDL_Thread *m_pVideoRefreshThr; //视频刷新线程句柄
AVFifoBuffer *m_pVideoFifo;
SDL_mutex *m_pVideoMutex;
AVStream *m_pVideoStream; //视频流
uint8_t *m_pPushPicSize; //推送Pic大小
SwsContext *m_pVideoSwsCtx; //视频变化ctx
/************************视频相关参数-end***********************/
}struct_stream_info;
typedef struct PUSH_FILE_STREAM{
CString m_cstrFilePath; //文件名称
AVFormatContext *m_pFmtFileCtx; //文件流上下文
}STRCT_PUSH_FILE;
// CLS_DlgStreamPusher 对话框
class CLS_DlgStreamPusher : public CDialog
{
// 构造
public:
CLS_DlgStreamPusher(CWnd* pParent = NULL); // 标准构造函数
// 对话框数据
enum { IDD = IDD_FFMPEG_STREAM_PUSHER_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg void OnDestroy();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedOk();
afx_msg void OnBnClickedChkSrcType();
afx_msg void OnBnClickedBtnOpenLocalFile();
afx_msg void OnBnClickedBtnPreview();
afx_msg void OnBnClickedCancel();
afx_msg void OnBnClickedChkShowVideo();
afx_msg void OnBnClickedChkWriteFile();
afx_msg void OnCbnSelchangeCobDeviceVideo();
afx_msg void OnCbnSelchangeCobResolution();
afx_msg void OnBnClickedBtnRefreshvideo();
afx_msg void OnBnClickedBtnOpenLocalFiles();
afx_msg void OnCbnSelchangeCboPushAddr();
afx_msg void OnNMDblclkListLocalFiles(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnNMRClickListLocalFiles(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
afx_msg void OnEnChangeUsername();
afx_msg void OnEnChangeUserid();
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
//控件定义
CEdit m_edtFrameRate;
CEdit m_edtName;
CEdit m_edtID;
CButton m_chkSrcType;
CButton m_chkShowVideo;
CButton m_chkWriteFile;
CButton m_btnOpenLocalFile;
CButton m_btnOpenFiles;
CStatic m_stcSelFile;
CStatic m_stcPreview;
CStatic m_stcPushStatus;
CComboBox m_cboDeviceVideo;
CComboBox m_cboDeviceAudio;
CComboBox m_cboResolution;
CComboBox m_cboPushAddr;
CListCtrl m_lstLocalFiles;
CMenu m_Rmenu;
CEdit m_EditUsername;
CEdit m_EditUserID;
private:
/**********************
method: 界面信息初始化
return: void
**********************/
void InitDlgItem();
/**********************
method: 数据信息初始化
return: void
**********************/
void InitData();
/**********************
method: SDL初始化
return: void
**********************/
void InitSdl();
/**********************
method: 界面信息反初始化
return: void
**********************/
void UnInitInfo();
/**********************
method: 获取设备信息
return: void
**********************/
void GetDevice();
/**********************
method: 获取连接的视频与音频设备
param : _iDeviceType:设备类型
return: >=0:成功
<0:失败
**********************/
int GetDeviceInfo(int _iDeviceType);
/**********************
method: 获取分辨率
param
return: 分辨率信息
**********************/
void GetResolution(int _iVideoIndex);
/**********************
method: 绑定滤波器
param
return: true:成功 false:失败
**********************/
bool BindFilter(int iDeviceID, IBaseFilter **pOutFilter, DeviceType deviceType);
/**********************
method: 获取音视频信息结构体
param :
return: 音视频信息结构体指针
**********************/
struct_stream_info* GetStreamStrcInfo();
/**********************
method: 窗体刷新
param : opaque:流参数信息
return:
**********************/
void RefreshScreen(void *opaque);
/**********************
method: 窗体显示
param : _pstrct_streaminfo:流参数信息
return:
**********************/
void DisplayScreen(struct_stream_info *_pstrct_streaminfo);
/**********************
method: 窗体显示音频波形
param : _pstrct_streaminfo:流参数信息
return:
**********************/
void DisplayAudio(struct_stream_info *_pstrct_streaminfo);
/**********************
method: 窗体显示视频
param : _pstrct_streaminfo:流参数信息
return:
**********************/
void DisplayVideo(struct_stream_info *_pstrct_streaminfo);
/**********************
method: 窗体区域填充
param : screen:窗体
x:左上角点横坐标
y:左上角点纵坐标
w:窗体宽
h:窗体高
color:颜色值
return:
**********************/
static void FillRec(SDL_Surface *screen,
int x, int y, int w, int h, int color);
/**********************
method: 停止测试
return:
**********************/
void StopTest();
/**********************
method: 停止流推送
param: opaque:流信息
return:
**********************/
void StopStream(void *opaque);
/**********************
method: 打开摄像头
param:
return: <0:打开失败
=0:打开成功
**********************/
int OpenCamera();
/**********************
method: 打开麦克风
param:
return: <0:打开失败
=0:打开成功
**********************/
int OpenAduio();
/**********************
method: 将文件信息插入列表
param: _cstrFilePath: 文件路径
return: <0:插入失败
=0:插入成功
**********************/
int InsertFileList(CString _cstrFilePath);
/**********************
method: 清理文件内存
param:
return:
**********************/
void ClearFileMem();
/**********************
method: 打开推流地址
param:
return: <0:打开失败
=0:打开成功
**********************/
int OpenRtmpAddr();
/**********************
method: 打开URL推流地址
param:
return: <0:打开失败
=0:打开成功
**********************/
int OpenRtmpUrl();
/**********************
method: 打开文件推流地址
param:
return: <0:打开失败
=0:打开成功
**********************/
int OpenRtmpFile();
/**********************
method: 创建视频播放窗口
param:
return: <0:创建失败
=0:创建成功
**********************/
int CreateVideoWindow();
/**********************
method: 初始化视频播放窗口
param:
return: <0:初始化失败
=0:初始化成功
**********************/
int InitVideoWindow();
/**********************
method: 获取当前文件夹下的所有文件
param:
return:
**********************/
void GetFiles(CString _cstrFilePath);
/**********************
method: 根据情况显示控件
param:
return:
**********************/
void ShowControls(BOOL _blShow);
/**********************
method: 删除文件
param:
return:
**********************/
void OnDeleteItem();
/**********************
method: 清空文件
param:
return:
**********************/
void OnClearItems();
/**********************
method: 更新sdl纹理等信息
param:
return: < 0: 更新失败
= 0: 更新成功
**********************/
int UpdateSdlInfo();
public:
/**********************
method: 获取当前选择的音视频设备名臣
param : _iDeviceType:设备类型
return: 设备名称
**********************/
char* GetDeviceName(int _iDeviceType);
/**********************
method: 事件处理器
param : _pstrct_streaminfo:流参数信息
return:
**********************/
void EventLoop(struct_stream_info *_pstrct_streaminfo);
/**********************
method: 打开输入文件
param: _cstrFilePath: 文件路径
return: AVFormatContext* 文件信息
**********************/
AVFormatContext* OpenFile(CString _cstrFilePath);
HBRUSH m_bkBrush; //背景刷
struct_stream_info* m_pStreamInfo; //音视频全局结构体
BOOL m_blVideoShow; //是否显示视频
BOOL m_blAudioShow; //是否显示音频
BOOL m_blCreateVideoWin;//是否创建视频窗口
BOOL m_blUrl; //是否网络流推送
BOOL m_blPushReady; //是否推流OK
BOOL m_blPushStart; //是否开始推流
BOOL m_blPreview; //是否进行视频预览
BOOL m_blPushSuccess; //是否推送成功
BOOL m_blPushSingle; //是否推送单文件
BOOL m_blPushCircle; //是否循环推送文件
CString m_cstrPushAddr; //推流地址
CString m_cstrFilePath; //推送文件路径
AVFormatContext *m_pFmtVideoCtx; //视频采集format
AVFormatContext *m_pFmtAudioCtx; //音频采集format
AVFormatContext *m_pFmtRtmpCtx; //rtmp推送format
AVCodecContext *m_pCodecVideoCtx;//视频采集解码器信息
AVCodecContext *m_pCodecAudioCtx;//音频采集解码器信息
int m_iVideoIndex; //视频采集解码器索引
int m_iAudioIndex; //音频采集解码器索引
int m_iVideoOutIndex;//推送视频解码器索引
int m_iAudioOutIndex;//推送音频解码器索引
int m_iSrcVideoHeight;//源视频高
int m_iSrcVideoWidth;//源视频宽
int m_iDstVideoHeight;//输出视频高
int m_iDstVideoWidth;//输出视频宽
int m_iFrameRate; //帧率
int m_iLstSelIndex; //列表选择项
int m_iWindowWidth; //背景板的宽
int m_iWiddowHeight; //背景板的高
SDL_Thread *m_pPushStreamThrid;//推流线程
SDL_Thread *m_pPushFileThrid;//推文件线程
map<int, std::vector<std::string>> m_mapDeviceInfo; //设备信息容器
map<int, map<int, int>> m_mapResolution; //分辨率容器
map<int, STRCT_PUSH_FILE> m_mapPushFile; //推送文件容器
STRCT_PUSH_FILE m_strctPushFile; //推送文件结构体
afx_msg void OnStnClickedStcPreview();
afx_msg void OnStnClickedStcResolution();
afx_msg void OnBnClickedEndPreview();
afx_msg void OnEnChangeGetname();
afx_msg void OnEnChangeGetid();
afx_msg void OnEnChangeEdtFramerate();
afx_msg void OnBnClickedBtnLogin();
afx_msg void OnBnClickedBtnEndpoint();
afx_msg void OnStnClickedStcPusherAddr();
afx_msg void OnBnClickedTermination();
afx_msg void OnStnClickedStcFrame();
};