VideoNetDlg.h
上传用户:panstart
上传日期:2022-04-12
资源大小:199k
文件大小:3k
源码类别:

IP电话/视频会议

开发平台:

C++ Builder

  1. // VideoNetDlg.h : header file
  2. //
  3. #if !defined(AFX_VIDEONETDLG_H__B0986306_5F44_11D6_8897_000B2B0F84B6__INCLUDED_)
  4. #define AFX_VIDEONETDLG_H__B0986306_5F44_11D6_8897_000B2B0F84B6__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "DSocket.h"
  9. #include "ConnectDlg.h"
  10. #include "RecordSound.h"
  11. #include "VideoCapture.h"
  12. #include "PlaySound.h"
  13. #include "Volume.h"
  14. #include "Encoder/libr263.h"
  15. #include "Decoder/tmndec.h"
  16. class CVideoNetDlg : public CDialog
  17. {
  18. // Attributes
  19. public:
  20. VideoCapture *vidcap;
  21. BOOL isVideo , isAudio , isStarted , isCaptureStarted;
  22. BOOL isViewLocalVideo,isViewRemoteVideo;
  23. BOOL isAudioSend,isAudioReceive;
  24. BOOL isVideoSend,isVideoReceive;
  25. PBITMAPINFO m_bmpinfo;
  26. BITMAPINFO compbmp;
  27. RecordSound *record;
  28. PlaySound1 *play;
  29. HDC m_hdc;
  30. CMenu *menu;
  31. CButton *bsend;
  32. CListBox *list;
  33. CStdioFile log;
  34. HICON m_hIcon;
  35. HWND hwnd;
  36. ConnectDlg *connectdlg;
  37. DSocket dcontrol,daudio,dvideo,dtext;
  38. HDRAWDIB hdib;
  39. int local_wnd_x , local_wnd_y;
  40. int remote_wnd_x , remote_wnd_y;
  41. // Compression parameters....
  42. CParam cparams;
  43. // Buffer for storing YUV data....
  44. unsigned int yuv[ QCIF_WIDTH*QCIF_HEIGHT  + (QCIF_WIDTH*QCIF_HEIGHT)/2 ];
  45. // Construction
  46. public:
  47. CVideoNetDlg(CWnd* pParent = NULL); // standard constructor
  48. // Dialog Data
  49. //{{AFX_DATA(CVideoNetDlg)
  50. enum { IDD = IDD_VIDEONET_DIALOG };
  51. // NOTE: the ClassWizard will add data members here
  52. //}}AFX_DATA
  53. // ClassWizard generated virtual function overrides
  54. //{{AFX_VIRTUAL(CVideoNetDlg)
  55. public:
  56. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  57. //}}AFX_VIRTUAL
  58. // Implementation
  59. // Generated message map functions
  60. //{{AFX_MSG(CVideoNetDlg)
  61. virtual BOOL OnInitDialog();
  62. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  63. afx_msg void OnPaint();
  64. afx_msg HCURSOR OnQueryDragIcon();
  65. virtual void OnCancel();
  66. // Conference menu handlers
  67. void OnConnect();
  68. void OnDisconnect();
  69. // View menu handlers
  70. void OnViewLocal();
  71. void OnViewRemote();
  72. //Audio menu handlers
  73. void OnVolumeControl();
  74. void OnAudioSend();
  75. void OnAudioReceive();
  76. // Video menu handlers
  77. void OnVideoSend();
  78. void OnVideoReceive();
  79. // Help menu handlers
  80. void OnAbout();
  81. void StartConference();
  82. void DestroyConference();
  83. void OnSendMesg();
  84. void DisplayMesg(char *str);
  85. void SendVideo(BYTE *data,int size);
  86. void DisplayRemoteFrame(unsigned char *data,int size);
  87. //}}AFX_MSG
  88. DECLARE_MESSAGE_MAP()
  89. };
  90. //{{AFX_INSERT_LOCATION}}
  91. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  92. #endif // !defined(AFX_VIDEONETDLG_H__B0986306_5F44_11D6_8897_000B2B0F84B6__INCLUDED_)