2009-02-09 21:15:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
* http://www.gabest.org
|
|
|
|
*
|
|
|
|
* This Program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This Program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include <afxpriv.h>
|
2009-05-18 11:08:04 +00:00
|
|
|
#include "GSdx.h"
|
2009-02-09 21:15:56 +00:00
|
|
|
#include "GSCaptureDlg.h"
|
|
|
|
|
|
|
|
// GSCaptureDlg dialog
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC(GSCaptureDlg, CDialog)
|
|
|
|
GSCaptureDlg::GSCaptureDlg(CWnd* pParent /*=NULL*/)
|
|
|
|
: CDialog(GSCaptureDlg::IDD, pParent)
|
|
|
|
{
|
2009-05-18 11:08:04 +00:00
|
|
|
m_width = theApp.GetConfig("CaptureWidth", 640);
|
|
|
|
m_height = theApp.GetConfig("CaptureHeight", 480);
|
|
|
|
m_filename = theApp.GetConfig("CaptureFileName", "").c_str();
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GSCaptureDlg::~GSCaptureDlg()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int GSCaptureDlg::GetSelCodec(Codec& c)
|
|
|
|
{
|
|
|
|
int iSel = m_codeclist.GetCurSel();
|
|
|
|
|
|
|
|
if(iSel < 0) return 0;
|
|
|
|
|
2009-05-11 08:18:00 +00:00
|
|
|
Codec* codec = (Codec*)m_codeclist.GetItemDataPtr(iSel);
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-05-11 08:18:00 +00:00
|
|
|
if(codec == NULL) return 2;
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-05-11 08:18:00 +00:00
|
|
|
c = *codec;
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
if(!c.filter)
|
|
|
|
{
|
|
|
|
c.moniker->BindToObject(NULL, NULL, __uuidof(IBaseFilter), (void**)&c.filter);
|
|
|
|
|
|
|
|
if(!c.filter) return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
LRESULT GSCaptureDlg::DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
LRESULT ret = __super::DefWindowProc(message, wParam, lParam);
|
|
|
|
|
|
|
|
if(message == WM_INITDIALOG) SendMessage(WM_KICKIDLE);
|
|
|
|
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSCaptureDlg::DoDataExchange(CDataExchange* pDX)
|
|
|
|
{
|
|
|
|
__super::DoDataExchange(pDX);
|
|
|
|
|
|
|
|
DDX_Text(pDX, IDC_EDIT1, m_filename);
|
|
|
|
DDX_Control(pDX, IDC_COMBO1, m_codeclist);
|
|
|
|
DDX_Text(pDX, IDC_EDIT2, m_width);
|
|
|
|
DDX_Text(pDX, IDC_EDIT4, m_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL GSCaptureDlg::OnInitDialog()
|
|
|
|
{
|
|
|
|
__super::OnInitDialog();
|
|
|
|
|
2009-05-11 08:18:00 +00:00
|
|
|
m_codecs.clear();
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
m_codeclist.ResetContent();
|
|
|
|
m_codeclist.SetItemDataPtr(m_codeclist.AddString(_T("Uncompressed")), NULL);
|
|
|
|
|
|
|
|
BeginEnumSysDev(CLSID_VideoCompressorCategory, moniker)
|
|
|
|
{
|
|
|
|
Codec c;
|
|
|
|
c.moniker = moniker;
|
|
|
|
|
|
|
|
LPOLESTR strName = NULL;
|
|
|
|
if(FAILED(moniker->GetDisplayName(NULL, NULL, &strName)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
c.DisplayName = strName;
|
|
|
|
CoTaskMemFree(strName);
|
|
|
|
|
|
|
|
CComPtr<IPropertyBag> pPB;
|
|
|
|
moniker->BindToStorage(0, 0, IID_IPropertyBag, (void**)&pPB);
|
|
|
|
|
|
|
|
CComVariant var;
|
|
|
|
if(FAILED(pPB->Read(CComBSTR(_T("FriendlyName")), &var, NULL)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
c.FriendlyName = var.bstrVal;
|
|
|
|
|
|
|
|
CStringW str = CStringW(c.DisplayName).MakeLower();
|
|
|
|
CString prefix;
|
|
|
|
if(str.Find(L"@device:dmo:") == 0) prefix = _T("(DMO) ");
|
|
|
|
else if(str.Find(L"@device:sw:") == 0) prefix = _T("(DS) ");
|
|
|
|
else if(str.Find(L"@device:cm:") == 0) prefix = _T("(VfW) ");
|
|
|
|
c.FriendlyName = prefix + c.FriendlyName;
|
|
|
|
|
2009-05-11 08:18:00 +00:00
|
|
|
m_codecs.push_back(c);
|
|
|
|
m_codeclist.SetItemDataPtr(m_codeclist.AddString(c.FriendlyName), &m_codecs.back());
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
EndEnumSysDev
|
|
|
|
|
|
|
|
//
|
|
|
|
|
2009-05-18 11:08:04 +00:00
|
|
|
CString DisplayNameToFind = theApp.GetConfig("CaptureVideoCodecDisplayName", "").c_str();
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
for(int i = 0; i < m_codeclist.GetCount(); i++)
|
|
|
|
{
|
|
|
|
CString DisplayName;
|
|
|
|
|
2009-05-11 08:18:00 +00:00
|
|
|
Codec* codec = (Codec*)m_codeclist.GetItemDataPtr(i);
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-05-11 08:18:00 +00:00
|
|
|
if(codec)
|
|
|
|
{
|
|
|
|
DisplayName = codec->DisplayName;
|
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
if(DisplayName == DisplayNameToFind)
|
|
|
|
{
|
|
|
|
m_codeclist.SetCurSel(i);
|
2009-05-11 08:18:00 +00:00
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
UpdateData(FALSE);
|
|
|
|
|
|
|
|
return TRUE; // return TRUE unless you set the focus to a control
|
|
|
|
// EXCEPTION: OCX Property Pages should return FALSE
|
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(GSCaptureDlg, CDialog)
|
|
|
|
ON_MESSAGE_VOID(WM_KICKIDLE, OnKickIdle)
|
|
|
|
ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
|
|
|
|
ON_BN_CLICKED(IDC_BUTTON2, OnBnClickedButton2)
|
|
|
|
ON_UPDATE_COMMAND_UI(IDC_BUTTON2, OnUpdateButton2)
|
|
|
|
ON_BN_CLICKED(IDOK, OnBnClickedOk)
|
|
|
|
ON_UPDATE_COMMAND_UI(IDOK, OnUpdateOK)
|
|
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
|
|
// GSCaptureDlg message handlers
|
|
|
|
|
|
|
|
void GSCaptureDlg::OnKickIdle()
|
|
|
|
{
|
|
|
|
UpdateDialogControls(this, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSCaptureDlg::OnBnClickedButton1()
|
|
|
|
{
|
|
|
|
UpdateData();
|
|
|
|
|
|
|
|
DWORD flags = OFN_EXPLORER|OFN_ENABLESIZING|OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT|OFN_PATHMUSTEXIST;
|
|
|
|
|
|
|
|
CFileDialog fd(FALSE, _T("avi"), m_filename, flags, _T("Avi files (*.avi)|*.avi||"), this, 0);
|
|
|
|
|
|
|
|
if(fd.DoModal() == IDOK)
|
|
|
|
{
|
|
|
|
m_filename = fd.GetPathName();
|
|
|
|
|
|
|
|
UpdateData(FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSCaptureDlg::OnBnClickedButton2()
|
|
|
|
{
|
|
|
|
Codec c;
|
|
|
|
|
|
|
|
if(GetSelCodec(c) != 1) return;
|
|
|
|
|
|
|
|
if(CComQIPtr<ISpecifyPropertyPages> pSPP = c.filter)
|
|
|
|
{
|
|
|
|
CAUUID caGUID;
|
|
|
|
|
|
|
|
memset(&caGUID, 0, sizeof(caGUID));
|
|
|
|
|
|
|
|
if(SUCCEEDED(pSPP->GetPages(&caGUID)))
|
|
|
|
{
|
|
|
|
IUnknown* lpUnk = NULL;
|
|
|
|
pSPP.QueryInterface(&lpUnk);
|
|
|
|
OleCreatePropertyFrame(m_hWnd, 0, 0, CStringW(c.FriendlyName), 1, (IUnknown**)&lpUnk, caGUID.cElems, caGUID.pElems, 0, 0, NULL);
|
|
|
|
lpUnk->Release();
|
|
|
|
|
|
|
|
if(caGUID.pElems) CoTaskMemFree(caGUID.pElems);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(CComQIPtr<IAMVfwCompressDialogs> pAMVfWCD = c.filter)
|
|
|
|
{
|
|
|
|
if(pAMVfWCD->ShowDialog(VfwCompressDialog_QueryConfig, NULL) == S_OK)
|
|
|
|
{
|
|
|
|
pAMVfWCD->ShowDialog(VfwCompressDialog_Config, m_hWnd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSCaptureDlg::OnUpdateButton2(CCmdUI* pCmdUI)
|
|
|
|
{
|
|
|
|
pCmdUI->Enable(m_codeclist.GetCurSel() >= 0 && m_codeclist.GetItemDataPtr(m_codeclist.GetCurSel()) != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSCaptureDlg::OnBnClickedOk()
|
|
|
|
{
|
|
|
|
UpdateData();
|
|
|
|
|
|
|
|
Codec c;
|
|
|
|
|
|
|
|
if(GetSelCodec(c) == 0) return;
|
|
|
|
|
|
|
|
m_enc = c.filter;
|
|
|
|
|
2009-05-18 11:08:04 +00:00
|
|
|
theApp.SetConfig("CaptureWidth", m_width);
|
|
|
|
theApp.SetConfig("CaptureHeight", m_height);
|
|
|
|
theApp.SetConfig("CaptureFileName", m_filename);
|
|
|
|
theApp.SetConfig("CaptureVideoCodecDisplayName", CString(c.DisplayName));
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
OnOK();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSCaptureDlg::OnUpdateOK(CCmdUI* pCmdUI)
|
|
|
|
{
|
|
|
|
CString str;
|
|
|
|
|
|
|
|
GetDlgItem(IDC_EDIT1)->GetWindowText(str);
|
|
|
|
|
|
|
|
pCmdUI->Enable(!str.IsEmpty() && m_codeclist.GetCurSel() >= 0);
|
|
|
|
}
|