G729OutDlg.h
上传用户:sz_zxd888
上传日期:2021-03-25
资源大小:2126k
文件大小:2k
源码类别:

语音压缩

开发平台:

C#

  1. // G729OutDlg.h : header file
  2. //
  3. #if !defined(AFX_G729OUTDLG_H__F6B4F850_781F_4E08_80A5_5BE87782A9AB__INCLUDED_)
  4. #define AFX_G729OUTDLG_H__F6B4F850_781F_4E08_80A5_5BE87782A9AB__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "Mmsystem.h"
  9. #define  BUFFER_SIZE 1024
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CG729OutDlg dialog
  12. class CG729OutDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. HWAVEOUT hwO;
  17. WAVEFORMATEX wfx;
  18. long lBufferCounter;
  19. FILE  *   fp;
  20. WAVEHDR  lBufferpHdr[BUFFER_SIZE];
  21. LRESULT OnWomDone(WPARAM wParam, LPARAM lParam);
  22. public:
  23. void PlayWave();
  24. CG729OutDlg(CWnd* pParent = NULL); // standard constructor
  25. // Dialog Data
  26. //{{AFX_DATA(CG729OutDlg)
  27. enum { IDD = IDD_G729OUT_DIALOG };
  28. // NOTE: the ClassWizard will add data members here
  29. //}}AFX_DATA
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CG729OutDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. HICON m_hIcon;
  38. // Generated message map functions
  39. //{{AFX_MSG(CG729OutDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  42. afx_msg void OnPaint();
  43. afx_msg HCURSOR OnQueryDragIcon();
  44. afx_msg void OnPlay();
  45. afx_msg void OnStop();
  46. afx_msg void OnTimer(UINT nIDEvent);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_G729OUTDLG_H__F6B4F850_781F_4E08_80A5_5BE87782A9AB__INCLUDED_)