Click here to Skip to main content
15,887,291 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questioncan be p[-1] dereferenced? Pin
sakthimuhuu22-Jun-14 18:54
sakthimuhuu22-Jun-14 18:54 
AnswerRe: can be p[-1] dereferenced? Pin
«_Superman_»22-Jun-14 20:22
professional«_Superman_»22-Jun-14 20:22 
AnswerRe: can be p[-1] dereferenced? Pin
Jochen Arndt22-Jun-14 21:00
professionalJochen Arndt22-Jun-14 21:00 
AnswerRe: can be p[-1] dereferenced? Pin
CPallini22-Jun-14 22:16
mveCPallini22-Jun-14 22:16 
GeneralRe: can be p[-1] dereferenced? Pin
sakthimuhuu24-Jun-14 2:11
sakthimuhuu24-Jun-14 2:11 
QuestionRe: can be p[-1] dereferenced? Pin
CPallini24-Jun-14 2:21
mveCPallini24-Jun-14 2:21 
AnswerRe: can be p[-1] dereferenced? Pin
Satya Chamakuri12-Aug-14 21:38
Satya Chamakuri12-Aug-14 21:38 
QuestionDirectShow not showing mp4 & WndProc Not working Pin
AmbiguousName20-Jun-14 1:23
AmbiguousName20-Jun-14 1:23 
Hello. I am trying to play video file using DirectShow found on this MSDN reference. I am facing two problems.
1- local H264 video doesn't get rendered properly. A frame shows and them some blocks keep showing.
2- Can not get notifications on my dialog window using WndProc. Using this sample.

I am using following code for getting events.
C++
void CDShowPlayerSampleDlg::OnStartPlay()
{
	CPlayer::m_hWndPlayerDlg = this->m_hWnd; // MainDlg->m_hWnd
	BOOL bResult = m_objPlayer.StartPlay(); // CPlayer m_objPlayer;
}

LRESULT CDShowPlayerSampleDlg::WindowProc(UINT message, WPARAM wParam, LPARAM lParam)
{
  switch(wParam) // lParam or wParam ?????????
  {
    case WM_GRAPHNOTIFY:
  }
  /* rest of the code here*/
}

Now I am setting the event notifications on the IGraphBuilder like this (in CPlayer).
HRESULT hResult = m_pGraphBuilder->QueryInterface(IID_IMediaEventEx, (void**)&m_pEvent);
hResult = m_pEvent->SetNotifyWindow((OAHWND)m_hWndPlayerDlg, WM_GRAPHNOTIFY, 0);


1- So why can not I get notifications in CDShowPlayerSampleDlg::WindowProc?
2- And why is that Windows Media Video (.wmv) file plays correctly but H264 does not. What could I do for smooth H264 playback?
Thanks for any pointers.

This world is going to explode due to international politics, SOON.


modified 20-Jun-14 8:18am.

AnswerRe: Can not Get Notification using WndProc Pin
Richard MacCutchan20-Jun-14 1:30
mveRichard MacCutchan20-Jun-14 1:30 
GeneralRe: Can not Get Notification using WndProc Pin
AmbiguousName20-Jun-14 2:04
AmbiguousName20-Jun-14 2:04 
GeneralRe: Can not Get Notification using WndProc Pin
Richard MacCutchan20-Jun-14 2:11
mveRichard MacCutchan20-Jun-14 2:11 
Questionswprintf_s with *wstring (Resolved) Pin
bkelly1319-Jun-14 6:39
bkelly1319-Jun-14 6:39 
QuestionRe: swprintf_s with *wstring Pin
David Crow19-Jun-14 6:54
David Crow19-Jun-14 6:54 
AnswerRe: swprintf_s with *wstring Pin
bkelly1319-Jun-14 7:11
bkelly1319-Jun-14 7:11 
QuestionRe: swprintf_s with *wstring Pin
David Crow19-Jun-14 9:53
David Crow19-Jun-14 9:53 
AnswerRe: swprintf_s with *wstring Pin
Graham Breach19-Jun-14 7:09
Graham Breach19-Jun-14 7:09 
GeneralRe: swprintf_s with *wstring Pin
bkelly1319-Jun-14 7:21
bkelly1319-Jun-14 7:21 
GeneralRe: swprintf_s with *wstring Pin
Richard MacCutchan19-Jun-14 23:28
mveRichard MacCutchan19-Jun-14 23:28 
QuestionCould not get the ConnectionString from Registry Key Pin
Member 1089437819-Jun-14 0:04
Member 1089437819-Jun-14 0:04 
SuggestionRe: Could not get the ConnectionString from Registry Key Pin
Richard MacCutchan19-Jun-14 0:35
mveRichard MacCutchan19-Jun-14 0:35 
GeneralRe: Could not get the ConnectionString from Registry Key Pin
Member 1089437819-Jun-14 22:42
Member 1089437819-Jun-14 22:42 
GeneralRe: Could not get the ConnectionString from Registry Key Pin
Richard MacCutchan19-Jun-14 23:26
mveRichard MacCutchan19-Jun-14 23:26 
GeneralRe: Could not get the ConnectionString from Registry Key Pin
Member 1089437820-Jun-14 4:00
Member 1089437820-Jun-14 4:00 
GeneralRe: Could not get the ConnectionString from Registry Key Pin
Richard MacCutchan20-Jun-14 4:08
mveRichard MacCutchan20-Jun-14 4:08 
QuestionRe: Could not get the ConnectionString from Registry Key Pin
David Crow20-Jun-14 4:43
David Crow20-Jun-14 4:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.