AudioCompressSelectorDlg.cpp
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:3k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. //
  20. #include "stdafx.h"
  21. #include "GVCapture.h"
  22. #include "AudioCompressSelectorDlg.h"
  23. #include "capture.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CAudioCompressSelectorDlg dialog
  31. CAudioCompressSelectorDlg::CAudioCompressSelectorDlg(CCaptureGraph *pCG, CWnd* pParent /*=NULL*/)
  32. : CDialog(CAudioCompressSelectorDlg::IDD, pParent)
  33. {
  34. //{{AFX_DATA_INIT(CAudioCompressSelectorDlg)
  35. // NOTE: the ClassWizard will add member initialization here
  36. //}}AFX_DATA_INIT
  37. m_pCG = pCG;
  38. }
  39. void CAudioCompressSelectorDlg::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CDialog::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CAudioCompressSelectorDlg)
  43. DDX_Control(pDX, IDC_LIST_AUDIO_FORMAT, m_lsAudioFormat);
  44. //}}AFX_DATA_MAP
  45. }
  46. BEGIN_MESSAGE_MAP(CAudioCompressSelectorDlg, CDialog)
  47. //{{AFX_MSG_MAP(CAudioCompressSelectorDlg)
  48. ON_WM_DESTROY()
  49. //}}AFX_MSG_MAP
  50. END_MESSAGE_MAP()
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CAudioCompressSelectorDlg message handlers
  53. void CAudioCompressSelectorDlg::OnOK() 
  54. {
  55. int i;
  56. if((i = m_lsAudioFormat.GetCurSel()) != LB_ERR)
  57. {
  58. AM_MEDIA_TYPE * pamt = (AM_MEDIA_TYPE *)(m_lsAudioFormat.GetItemDataPtr(i));
  59. m_pCG->SetAudioWaveformat(pamt);
  60. }
  61. CDialog::OnOK();
  62. }
  63. void CAudioCompressSelectorDlg::OnCancel() 
  64. {
  65. m_pCG->SetAudioWaveformat(NULL);
  66. CDialog::OnCancel();
  67. }
  68. BOOL CAudioCompressSelectorDlg::OnInitDialog() 
  69. {
  70. CDialog::OnInitDialog();
  71. m_pCG->EnumAudioWaveFormat(&m_lsAudioFormat);
  72. return TRUE;  // return TRUE unless you set the focus to a control
  73.               // EXCEPTION: OCX Property Pages should return FALSE
  74. }
  75. void CAudioCompressSelectorDlg::OnDestroy() 
  76. {
  77. for(int i = 0; i < m_lsAudioFormat.GetCount(); i++)
  78. HeapFree(GetProcessHeap(), 0, m_lsAudioFormat.GetItemDataPtr(i));
  79. CDialog::OnDestroy();
  80. }