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

P2P编程

开发平台:

Visual C++

  1. //------------------------------------------------------------------------------
  2. // File: WinCtrl.cpp
  3. //
  4. // Desc: DirectShow base classes - implements video control interface class.
  5. //
  6. // Copyright (c) Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8. #include <streams.h>
  9. // The control interface methods require us to be connected
  10. #define CheckConnected(pin,code)                    
  11. {                                                   
  12.     if (pin == NULL) {                              
  13.         ASSERT(!TEXT("Pin not set"));               
  14.     } else if (pin->IsConnected() == FALSE) {       
  15.         return (code);                              
  16.     }                                               
  17. }
  18. // This checks to see whether the window has a drain. An application can in
  19. // most environments set the owner/parent of windows so that they appear in
  20. // a compound document context (for example). In this case, the application
  21. // would probably like to be told of any keyboard/mouse messages. Therefore
  22. // we pass these messages on untranslated, returning TRUE if we're successful
  23. BOOL WINAPI PossiblyEatMessage(HWND hwndDrain, UINT uMsg, WPARAM wParam, LPARAM lParam)
  24. {
  25.     if (hwndDrain != NULL && !InSendMessage())
  26.     {
  27.         switch (uMsg)
  28.         {
  29.             case WM_CHAR:
  30.             case WM_DEADCHAR:
  31.             case WM_KEYDOWN:
  32.             case WM_KEYUP:
  33.             case WM_LBUTTONDBLCLK:
  34.             case WM_LBUTTONDOWN:
  35.             case WM_LBUTTONUP:
  36.             case WM_MBUTTONDBLCLK:
  37.             case WM_MBUTTONDOWN:
  38.             case WM_MBUTTONUP:
  39.             case WM_MOUSEACTIVATE:
  40.             case WM_MOUSEMOVE:
  41.             // If we pass this on we don't get any mouse clicks
  42.             //case WM_NCHITTEST:
  43.             case WM_NCLBUTTONDBLCLK:
  44.             case WM_NCLBUTTONDOWN:
  45.             case WM_NCLBUTTONUP:
  46.             case WM_NCMBUTTONDBLCLK:
  47.             case WM_NCMBUTTONDOWN:
  48.             case WM_NCMBUTTONUP:
  49.             case WM_NCMOUSEMOVE:
  50.             case WM_NCRBUTTONDBLCLK:
  51.             case WM_NCRBUTTONDOWN:
  52.             case WM_NCRBUTTONUP:
  53.             case WM_RBUTTONDBLCLK:
  54.             case WM_RBUTTONDOWN:
  55.             case WM_RBUTTONUP:
  56.             case WM_SYSCHAR:
  57.             case WM_SYSDEADCHAR:
  58.             case WM_SYSKEYDOWN:
  59.             case WM_SYSKEYUP:
  60.                 DbgLog((LOG_TRACE, 2, TEXT("Forwarding %x to drain")));
  61.                 PostMessage(hwndDrain, uMsg, wParam, lParam);
  62.                 return TRUE;
  63.         }
  64.     }
  65.     return FALSE;
  66. }
  67. // This class implements the IVideoWindow control functions (dual interface)
  68. // we support a large number of properties and methods designed to allow the
  69. // client (whether it be an automation controller or a C/C++ application) to
  70. // set and get a number of window related properties such as it's position.
  71. // We also support some methods that duplicate the properties but provide a
  72. // more direct and efficient mechanism as many values may be changed in one
  73. CBaseControlWindow::CBaseControlWindow(
  74.                         CBaseFilter *pFilter,        // Owning filter
  75.                         CCritSec *pInterfaceLock,    // Locking object
  76.                         TCHAR *pName,                // Object description
  77.                         LPUNKNOWN pUnk,              // Normal COM ownership
  78.                         HRESULT *phr) :              // OLE return code
  79.     CBaseVideoWindow(pName,pUnk),
  80.     m_pInterfaceLock(pInterfaceLock),
  81.     m_hwndOwner(NULL),
  82.     m_hwndDrain(NULL),
  83.     m_bAutoShow(TRUE),
  84.     m_pFilter(pFilter),
  85.     m_bCursorHidden(FALSE),
  86.     m_pPin(NULL)
  87. {
  88.     ASSERT(m_pFilter);
  89.     ASSERT(m_pInterfaceLock);
  90.     ASSERT(phr);
  91.     m_BorderColour = VIDEO_COLOUR;
  92. }
  93. // Set the title caption on the base window, we don't do any field checking
  94. // as we really don't care what title they intend to have. We can always get
  95. // it back again later with GetWindowText. The only other complication is to
  96. // do the necessary string conversions between ANSI and OLE Unicode strings
  97. STDMETHODIMP CBaseControlWindow::put_Caption(BSTR strCaption)
  98. {
  99.     CheckPointer(strCaption,E_POINTER);
  100.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  101. #ifdef UNICODE
  102.     SetWindowText(m_hwnd, strCaption);
  103. #else
  104.     CHAR Caption[CAPTION];
  105.     WideCharToMultiByte(CP_ACP,0,strCaption,-1,Caption,CAPTION,NULL,NULL);
  106.     SetWindowText(m_hwnd, Caption);
  107. #endif
  108.     return NOERROR;
  109. }
  110. // Get the current base window title caption, once again we do no real field
  111. // checking. We allocate a string for the window title to be filled in with
  112. // which ensures the interface doesn't fiddle around with getting memory. A
  113. // BSTR is a normal C string with the length at position (-1), we use the
  114. // WriteBSTR helper function to create the caption to try and avoid OLE32
  115. STDMETHODIMP CBaseControlWindow::get_Caption(BSTR *pstrCaption)
  116. {
  117.     CheckPointer(pstrCaption,E_POINTER);
  118.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  119.     WCHAR WideCaption[CAPTION];
  120. #ifdef UNICODE
  121.     GetWindowText(m_hwnd,WideCaption,CAPTION);
  122. #else
  123.     // Convert the ASCII caption to a UNICODE string
  124.     TCHAR Caption[CAPTION];
  125.     GetWindowText(m_hwnd,Caption,CAPTION);
  126.     MultiByteToWideChar(CP_ACP,0,Caption,-1,WideCaption,CAPTION);
  127. #endif
  128.     return WriteBSTR(pstrCaption,WideCaption);
  129. }
  130. // Set the window style using GWL_EXSTYLE
  131. STDMETHODIMP CBaseControlWindow::put_WindowStyleEx(long WindowStyleEx)
  132. {
  133.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  134.     // Should we be taking off WS_EX_TOPMOST
  135.     if (GetWindowLong(m_hwnd,GWL_EXSTYLE) & WS_EX_TOPMOST) {
  136.         if ((WindowStyleEx & WS_EX_TOPMOST) == 0) {
  137.             SendMessage(m_hwnd,m_ShowStageTop,(WPARAM) FALSE,(LPARAM) 0);
  138.         }
  139.     }
  140.     // Likewise should we be adding WS_EX_TOPMOST
  141.     if (WindowStyleEx & WS_EX_TOPMOST) {
  142.         SendMessage(m_hwnd,m_ShowStageTop,(WPARAM) TRUE,(LPARAM) 0);
  143.         WindowStyleEx &= (~WS_EX_TOPMOST);
  144.         if (WindowStyleEx == 0) return NOERROR;
  145.     }
  146.     return DoSetWindowStyle(WindowStyleEx,GWL_EXSTYLE);
  147. }
  148. // Gets the current GWL_EXSTYLE base window style
  149. STDMETHODIMP CBaseControlWindow::get_WindowStyleEx(long *pWindowStyleEx)
  150. {
  151.     CheckPointer(pWindowStyleEx,E_POINTER);
  152.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  153.     return DoGetWindowStyle(pWindowStyleEx,GWL_EXSTYLE);
  154. }
  155. // Set the window style using GWL_STYLE
  156. STDMETHODIMP CBaseControlWindow::put_WindowStyle(long WindowStyle)
  157. {
  158.     // These styles cannot be changed dynamically
  159.     if ((WindowStyle & WS_DISABLED) ||
  160.         (WindowStyle & WS_ICONIC) ||
  161.         (WindowStyle & WS_MAXIMIZE) ||
  162.         (WindowStyle & WS_MINIMIZE) ||
  163.         (WindowStyle & WS_HSCROLL) ||
  164.         (WindowStyle & WS_VSCROLL)) {
  165.             return E_INVALIDARG;
  166.     }
  167.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  168.     return DoSetWindowStyle(WindowStyle,GWL_STYLE);
  169. }
  170. // Get the current GWL_STYLE base window style
  171. STDMETHODIMP CBaseControlWindow::get_WindowStyle(long *pWindowStyle)
  172. {
  173.     CheckPointer(pWindowStyle,E_POINTER);
  174.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  175.     return DoGetWindowStyle(pWindowStyle,GWL_STYLE);
  176. }
  177. // Change the base window style or the extended styles depending on whether
  178. // WindowLong is GWL_STYLE or GWL_EXSTYLE. We must call SetWindowPos to have
  179. // the window displayed in it's new style after the change which is a little
  180. // tricky if the window is not currently visible as we realise it offscreen.
  181. // In most cases the client will call get_WindowStyle before they call this
  182. // and then AND and OR in extra bit settings according to the requirements
  183. HRESULT CBaseControlWindow::DoSetWindowStyle(long Style,long WindowLong)
  184. {
  185.     RECT WindowRect;
  186.     // Get the window's visibility before setting the style
  187.     BOOL bVisible = IsWindowVisible(m_hwnd);
  188.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  189.     // Set the new style flags for the window
  190.     SetWindowLong(m_hwnd,WindowLong,Style);
  191.     UINT WindowFlags = SWP_SHOWWINDOW | SWP_FRAMECHANGED | SWP_NOACTIVATE;
  192.     WindowFlags |= SWP_NOZORDER | SWP_NOSIZE | SWP_NOMOVE;
  193.     // Show the window again in the current position
  194.     if (bVisible == TRUE) {
  195.         SetWindowPos(m_hwnd,            // Base window handle
  196.                      HWND_TOP,          // Just a place holder
  197.                      0,0,0,0,           // Leave size and position
  198.                      WindowFlags);      // Just draw it again
  199.         return NOERROR;
  200.     }
  201.     // Move the window offscreen so the user doesn't see the changes
  202.     MoveWindow((HWND) m_hwnd,                     // Base window handle
  203.                GetSystemMetrics(SM_CXSCREEN),     // Current desktop width
  204.                GetSystemMetrics(SM_CYSCREEN),     // Likewise it's height
  205.                WIDTH(&WindowRect),                // Use the same width
  206.                HEIGHT(&WindowRect),               // Keep height same to
  207.                TRUE);                             // May as well repaint
  208.     // Now show the previously hidden window
  209.     SetWindowPos(m_hwnd,            // Base window handle
  210.                  HWND_TOP,          // Just a place holder
  211.                  0,0,0,0,           // Leave size and position
  212.                  WindowFlags);      // Just draw it again
  213.     ShowWindow(m_hwnd,SW_HIDE);
  214.     if (GetParent(m_hwnd)) {
  215.         MapWindowPoints(HWND_DESKTOP, GetParent(m_hwnd), (LPPOINT)&WindowRect, 2);
  216.     }
  217.     MoveWindow((HWND) m_hwnd,        // Base window handle
  218.                WindowRect.left,      // Existing x coordinate
  219.                WindowRect.top,       // Existing y coordinate
  220.                WIDTH(&WindowRect),   // Use the same width
  221.                HEIGHT(&WindowRect),  // Keep height same to
  222.                TRUE);                // May as well repaint
  223.     return NOERROR;
  224. }
  225. // Get the current base window style (either GWL_STYLE or GWL_EXSTYLE)
  226. HRESULT CBaseControlWindow::DoGetWindowStyle(long *pStyle,long WindowLong)
  227. {
  228.     *pStyle = GetWindowLong(m_hwnd,WindowLong);
  229.     return NOERROR;
  230. }
  231. // Change the visibility of the base window, this takes the same parameters
  232. // as the ShowWindow Win32 API does, so the client can have the window hidden
  233. // or shown, minimised to an icon, or maximised to play in full screen mode
  234. // We pass the request on to the base window to actually make the change
  235. STDMETHODIMP CBaseControlWindow::put_WindowState(long WindowState)
  236. {
  237.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  238.     DoShowWindow(WindowState);
  239.     return NOERROR;
  240. }
  241. // Get the current window state, this function returns a subset of the SW bit
  242. // settings available in ShowWindow, if the window is visible then SW_SHOW is
  243. // set, if it is hidden then the SW_HIDDEN is set, if it is either minimised
  244. // or maximised then the SW_MINIMIZE or SW_MAXIMIZE is set respectively. The
  245. // other SW bit settings are really set commands not readable output values
  246. STDMETHODIMP CBaseControlWindow::get_WindowState(long *pWindowState)
  247. {
  248.     CheckPointer(pWindowState,E_POINTER);
  249.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  250.     ASSERT(pWindowState);
  251.     *pWindowState = FALSE;
  252.     // Is the window visible, a window is termed visible if it is somewhere on
  253.     // the current desktop even if it is completely obscured by other windows
  254.     // so the flag is a style for each window set with the WS_VISIBLE bit
  255.     if (IsWindowVisible(m_hwnd) == TRUE) {
  256.         // Is the base window iconic
  257.         if (IsIconic(m_hwnd) == TRUE) {
  258.             *pWindowState |= SW_MINIMIZE;
  259.         }
  260.         // Has the window been maximised
  261.         else if (IsZoomed(m_hwnd) == TRUE) {
  262.             *pWindowState |= SW_MAXIMIZE;
  263.         }
  264.         // Window is normal
  265.         else {
  266.             *pWindowState |= SW_SHOW;
  267.         }
  268.     } else {
  269.         *pWindowState |= SW_HIDE;
  270.     }
  271.     return NOERROR;
  272. }
  273. // This makes sure that any palette we realise in the base window (through a
  274. // media type or through the overlay interface) is done in the background and
  275. // is therefore mapped to existing device entries rather than taking it over
  276. // as it will do when we this window gets the keyboard focus. An application
  277. // uses this to make sure it doesn't have it's palette removed by the window
  278. STDMETHODIMP CBaseControlWindow::put_BackgroundPalette(long BackgroundPalette)
  279. {
  280.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  281.     CAutoLock cWindowLock(&m_WindowLock);
  282.     // Check this is a valid automation boolean type
  283.     if (BackgroundPalette != OATRUE) {
  284.         if (BackgroundPalette != OAFALSE) {
  285.             return E_INVALIDARG;
  286.         }
  287.     }
  288.     // Make sure the window realises any palette it has again
  289.     m_bBackground = (BackgroundPalette == OATRUE ? TRUE : FALSE);
  290.     PostMessage(m_hwnd,m_RealizePalette,0,0);
  291.     PaintWindow(FALSE);
  292.     return NOERROR;
  293. }
  294. // This returns the current background realisation setting
  295. STDMETHODIMP
  296. CBaseControlWindow::get_BackgroundPalette(long *pBackgroundPalette)
  297. {
  298.     CheckPointer(pBackgroundPalette,E_POINTER);
  299.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  300.     CAutoLock cWindowLock(&m_WindowLock);
  301.     // Get the current background palette setting
  302.     *pBackgroundPalette = (m_bBackground == TRUE ? OATRUE : OAFALSE);
  303.     return NOERROR;
  304. }
  305. // Change the visibility of the base window
  306. STDMETHODIMP CBaseControlWindow::put_Visible(long Visible)
  307. {
  308.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  309.     // Check this is a valid automation boolean type
  310.     if (Visible != OATRUE) {
  311.         if (Visible != OAFALSE) {
  312.             return E_INVALIDARG;
  313.         }
  314.     }
  315.     // Convert the boolean visibility into SW_SHOW and SW_HIDE
  316.     INT Mode = (Visible == OATRUE ? SW_SHOWNORMAL : SW_HIDE);
  317.     DoShowWindow(Mode);
  318.     return NOERROR;
  319. }
  320. // Return OATRUE if the window is currently visible otherwise OAFALSE
  321. STDMETHODIMP CBaseControlWindow::get_Visible(long *pVisible)
  322. {
  323.     CheckPointer(pVisible,E_POINTER);
  324.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  325.     // See if the base window has a WS_VISIBLE style - this will return TRUE
  326.     // even if the window is completely obscured by other desktop windows, we
  327.     // return FALSE if the window is not showing because of earlier calls
  328.     BOOL Mode = IsWindowVisible(m_hwnd);
  329.     *pVisible = (Mode == TRUE ? OATRUE : OAFALSE);
  330.     return NOERROR;
  331. }
  332. // Change the left position of the base window. This keeps the window width
  333. // and height properties the same so it effectively shunts the window left or
  334. // right accordingly - there is the Width property to change that dimension
  335. STDMETHODIMP CBaseControlWindow::put_Left(long Left)
  336. {
  337.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  338.     BOOL bSuccess;
  339.     RECT WindowRect;
  340.     // Get the current window position in a RECT
  341.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  342.     if (GetParent(m_hwnd)) {
  343.         MapWindowPoints(HWND_DESKTOP, GetParent(m_hwnd), (LPPOINT)&WindowRect, 2);
  344.     }
  345.     // Adjust the coordinates ready for SetWindowPos, the window rectangle we
  346.     // get back from GetWindowRect is in left,top,right and bottom while the
  347.     // coordinates SetWindowPos wants are left,top,width and height values
  348.     WindowRect.bottom = WindowRect.bottom - WindowRect.top;
  349.     WindowRect.right = WindowRect.right - WindowRect.left;
  350.     UINT WindowFlags = SWP_NOZORDER | SWP_FRAMECHANGED | SWP_NOACTIVATE;
  351.     bSuccess = SetWindowPos(m_hwnd,                // Window handle
  352.                             HWND_TOP,              // Put it at the top
  353.                             Left,                  // New left position
  354.                             WindowRect.top,        // Leave top alone
  355.                             WindowRect.right,      // The WIDTH (not right)
  356.                             WindowRect.bottom,     // The HEIGHT (not bottom)
  357.                             WindowFlags);          // Show window options
  358.     if (bSuccess == FALSE) {
  359.         return E_INVALIDARG;
  360.     }
  361.     return NOERROR;
  362. }
  363. // Return the current base window left position
  364. STDMETHODIMP CBaseControlWindow::get_Left(long *pLeft)
  365. {
  366.     CheckPointer(pLeft,E_POINTER);
  367.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  368.     RECT WindowRect;
  369.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  370.     *pLeft = WindowRect.left;
  371.     return NOERROR;
  372. }
  373. // Change the current width of the base window. This property complements the
  374. // left position property so we must keep the left edge constant and expand or
  375. // contract to the right, the alternative would be to change the left edge so
  376. // keeping the right edge constant but this is maybe a little more intuitive
  377. STDMETHODIMP CBaseControlWindow::put_Width(long Width)
  378. {
  379.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  380.     BOOL bSuccess;
  381.     RECT WindowRect;
  382.     // Adjust the coordinates ready for SetWindowPos, the window rectangle we
  383.     // get back from GetWindowRect is in left,top,right and bottom while the
  384.     // coordinates SetWindowPos wants are left,top,width and height values
  385.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  386.     if (GetParent(m_hwnd)) {
  387.         MapWindowPoints(HWND_DESKTOP, GetParent(m_hwnd), (LPPOINT)&WindowRect, 2);
  388.     }
  389.     WindowRect.bottom = WindowRect.bottom - WindowRect.top;
  390.     UINT WindowFlags = SWP_NOZORDER | SWP_FRAMECHANGED | SWP_NOACTIVATE;
  391.     // This seems to have a bug in that calling SetWindowPos on a window with
  392.     // just the width changing causes it to ignore the width that you pass in
  393.     // and sets it to a mimimum value of 110 pixels wide (Windows NT 3.51)
  394.     bSuccess = SetWindowPos(m_hwnd,                // Window handle
  395.                             HWND_TOP,              // Put it at the top
  396.                             WindowRect.left,       // Leave left alone
  397.                             WindowRect.top,        // Leave top alone
  398.                             Width,                 // New WIDTH dimension
  399.                             WindowRect.bottom,     // The HEIGHT (not bottom)
  400.                             WindowFlags);          // Show window options
  401.     if (bSuccess == FALSE) {
  402.         return E_INVALIDARG;
  403.     }
  404.     return NOERROR;
  405. }
  406. // Return the current base window width
  407. STDMETHODIMP CBaseControlWindow::get_Width(long *pWidth)
  408. {
  409.     CheckPointer(pWidth,E_POINTER);
  410.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  411.     RECT WindowRect;
  412.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  413.     *pWidth = WindowRect.right - WindowRect.left;
  414.     return NOERROR;
  415. }
  416. // This allows the client program to change the top position for the window in
  417. // the same way that changing the left position does not affect the width of
  418. // the image so changing the top position does not affect the window height
  419. STDMETHODIMP CBaseControlWindow::put_Top(long Top)
  420. {
  421.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  422.     BOOL bSuccess;
  423.     RECT WindowRect;
  424.     // Get the current window position in a RECT
  425.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  426.     if (GetParent(m_hwnd)) {
  427.         MapWindowPoints(HWND_DESKTOP, GetParent(m_hwnd), (LPPOINT)&WindowRect, 2);
  428.     }
  429.     // Adjust the coordinates ready for SetWindowPos, the window rectangle we
  430.     // get back from GetWindowRect is in left,top,right and bottom while the
  431.     // coordinates SetWindowPos wants are left,top,width and height values
  432.     WindowRect.bottom = WindowRect.bottom - WindowRect.top;
  433.     WindowRect.right = WindowRect.right - WindowRect.left;
  434.     UINT WindowFlags = SWP_NOZORDER | SWP_FRAMECHANGED | SWP_NOACTIVATE;
  435.     bSuccess = SetWindowPos(m_hwnd,                // Window handle
  436.                             HWND_TOP,              // Put it at the top
  437.                             WindowRect.left,       // Leave left alone
  438.                             Top,                   // New top position
  439.                             WindowRect.right,      // The WIDTH (not right)
  440.                             WindowRect.bottom,     // The HEIGHT (not bottom)
  441.                             WindowFlags);          // Show window flags
  442.     if (bSuccess == FALSE) {
  443.         return E_INVALIDARG;
  444.     }
  445.     return NOERROR;
  446. }
  447. // Return the current base window top position
  448. STDMETHODIMP CBaseControlWindow::get_Top(long *pTop)
  449. {
  450.     CheckPointer(pTop,E_POINTER);
  451.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  452.     RECT WindowRect;
  453.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  454.     *pTop = WindowRect.top;
  455.     return NOERROR;
  456. }
  457. // Change the height of the window, this complements the top property so when
  458. // we change this we must keep the top position for the base window, as said
  459. // before we could keep the bottom and grow upwards although this is perhaps
  460. // a little more intuitive since we already have a top position property
  461. STDMETHODIMP CBaseControlWindow::put_Height(long Height)
  462. {
  463.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  464.     BOOL bSuccess;
  465.     RECT WindowRect;
  466.     // Adjust the coordinates ready for SetWindowPos, the window rectangle we
  467.     // get back from GetWindowRect is in left,top,right and bottom while the
  468.     // coordinates SetWindowPos wants are left,top,width and height values
  469.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  470.     if (GetParent(m_hwnd)) {
  471.         MapWindowPoints(HWND_DESKTOP, GetParent(m_hwnd), (LPPOINT)&WindowRect, 2);
  472.     }
  473.     WindowRect.right = WindowRect.right - WindowRect.left;
  474.     UINT WindowFlags = SWP_NOZORDER | SWP_FRAMECHANGED | SWP_NOACTIVATE;
  475.     bSuccess = SetWindowPos(m_hwnd,                // Window handle
  476.                             HWND_TOP,              // Put it at the top
  477.                             WindowRect.left,       // Leave left alone
  478.                             WindowRect.top,        // Leave top alone
  479.                             WindowRect.right,      // The WIDTH (not right)
  480.                             Height,                // New height dimension
  481.                             WindowFlags);          // Show window flags
  482.     if (bSuccess == FALSE) {
  483.         return E_INVALIDARG;
  484.     }
  485.     return NOERROR;
  486. }
  487. // Return the current base window height
  488. STDMETHODIMP CBaseControlWindow::get_Height(long *pHeight)
  489. {
  490.     CheckPointer(pHeight,E_POINTER);
  491.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  492.     RECT WindowRect;
  493.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  494.     *pHeight = WindowRect.bottom - WindowRect.top;
  495.     return NOERROR;
  496. }
  497. // This can be called to change the owning window. Setting the owner is done
  498. // through this function, however to make the window a true child window the
  499. // style must also be set to WS_CHILD. After resetting the owner to NULL an
  500. // application should also set the style to WS_OVERLAPPED | WS_CLIPCHILDREN.
  501. // We cannot lock the object here because the SetParent causes an interthread
  502. // SendMessage to the owner window. If they are in GetState we will sit here
  503. // incomplete with the critical section locked therefore blocking out source
  504. // filter threads from accessing us. Because the source thread can't enter us
  505. // it can't get buffers or call EndOfStream so the GetState will not complete
  506. STDMETHODIMP CBaseControlWindow::put_Owner(OAHWND Owner)
  507. {
  508.     // Check we are connected otherwise reject the call
  509.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  510.     m_hwndOwner = (HWND) Owner;
  511.     HWND hwndParent = m_hwndOwner;
  512.     // Add or remove WS_CHILD as appropriate
  513.     LONG Style = GetWindowLong(m_hwnd,GWL_STYLE);
  514.     if (Owner == NULL) {
  515.         Style &= (~WS_CHILD);
  516.     } else {
  517.         Style |= (WS_CHILD);
  518.     }
  519.     SetWindowLong(m_hwnd,GWL_STYLE,Style);
  520.     // Don't call this with the filter locked
  521.     SetParent(m_hwnd,hwndParent);
  522.     PaintWindow(TRUE);
  523.     NOTE1("Changed parent %lx",hwndParent);
  524.     return NOERROR;
  525. }
  526. // This complements the put_Owner to get the current owning window property
  527. // we always return NOERROR although the returned window handle may be NULL
  528. // to indicate no owning window (the desktop window doesn't qualify as one)
  529. // If an application sets the owner we call SetParent, however that returns
  530. // NULL until the WS_CHILD bit is set on, so we store the owner internally
  531. STDMETHODIMP CBaseControlWindow::get_Owner(OAHWND *Owner)
  532. {
  533.     CheckPointer(Owner,E_POINTER);
  534.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  535.     *Owner = (OAHWND) m_hwndOwner;
  536.     return NOERROR;
  537. }
  538. // And renderer supporting IVideoWindow may have an HWND set who will get any
  539. // keyboard and mouse messages we receive posted on to them. This is separate
  540. // from setting an owning window. By separating the two, applications may get
  541. // messages sent on even when they have set no owner (perhaps it's maximised)
  542. STDMETHODIMP CBaseControlWindow::put_MessageDrain(OAHWND Drain)
  543. {
  544.     // Check we are connected otherwise reject the call
  545.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  546.     m_hwndDrain = (HWND) Drain;
  547.     return NOERROR;
  548. }
  549. // Return the current message drain
  550. STDMETHODIMP CBaseControlWindow::get_MessageDrain(OAHWND *Drain)
  551. {
  552.     CheckPointer(Drain,E_POINTER);
  553.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  554.     *Drain = (OAHWND) m_hwndDrain;
  555.     return NOERROR;
  556. }
  557. // This is called by the filter graph to inform us of a message we should know
  558. // is being sent to our owning window. We have this because as a child window
  559. // we do not get certain messages that are only sent to top level windows. We
  560. // must see the palette changed/changing/query messages so that we know if we
  561. // have the foreground palette or not. We pass the message on to our window
  562. // using SendMessage - this will cause an interthread send message to occur
  563. STDMETHODIMP
  564. CBaseControlWindow::NotifyOwnerMessage(OAHWND hwnd,    // Window handle
  565.                                        long uMsg,    // Message ID
  566.                                        LONG_PTR wParam,  // Parameters
  567.                                        LONG_PTR lParam)  // for message
  568. {
  569.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  570.     // Only interested in these Windows messages
  571.     switch (uMsg) {
  572.         case WM_SYSCOLORCHANGE:
  573.         case WM_PALETTECHANGED:
  574.         case WM_PALETTEISCHANGING:
  575.         case WM_QUERYNEWPALETTE:
  576.         case WM_DEVMODECHANGE:
  577.         case WM_DISPLAYCHANGE:
  578.         case WM_ACTIVATEAPP:
  579.             // If we do not have an owner then ignore
  580.             if (m_hwndOwner == NULL) {
  581.                 return NOERROR;
  582.             }
  583.             SendMessage(m_hwnd,uMsg,(WPARAM)wParam,(LPARAM)lParam);
  584.     break;
  585. // do NOT fwd WM_MOVE. the parameters are the location of the parent
  586. // window, NOT what the renderer should be looking at.  But we need
  587. // to make sure the overlay is moved with the parent window, so we
  588. // do this.
  589. case WM_MOVE:
  590.     PostMessage(m_hwnd,WM_PAINT,0,0);
  591.     break;
  592.     }
  593.     return NOERROR;
  594. }
  595. // Allow an application to have us set the base window in the foreground. We
  596. // have this because it is difficult for one thread to do do this to a window
  597. // owned by another thread. We ask the base window class to do the real work
  598. STDMETHODIMP CBaseControlWindow::SetWindowForeground(long Focus)
  599. {
  600.     // Check this is a valid automation boolean type
  601.     if (Focus != OATRUE) {
  602.         if (Focus != OAFALSE) {
  603.             return E_INVALIDARG;
  604.         }
  605.     }
  606.     // We shouldn't lock as this sends a message
  607.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  608.     BOOL bFocus = (Focus == OATRUE ? TRUE : FALSE);
  609.     DoSetWindowForeground(bFocus);
  610.     return NOERROR;
  611. }
  612. // This allows a client to set the complete window size and position in one
  613. // atomic operation. The same affect can be had by changing each dimension
  614. // in turn through their individual properties although some flashing will
  615. // occur as each of them gets updated (they are better set at design time)
  616. STDMETHODIMP
  617. CBaseControlWindow::SetWindowPosition(long Left,long Top,long Width,long Height)
  618. {
  619.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  620.     BOOL bSuccess;
  621.     // Set the new size and position
  622.     UINT WindowFlags = SWP_NOZORDER | SWP_FRAMECHANGED | SWP_NOACTIVATE;
  623.     ASSERT(IsWindow(m_hwnd));
  624.     bSuccess = SetWindowPos(m_hwnd,         // Window handle
  625.                             HWND_TOP,       // Put it at the top
  626.                             Left,           // Left position
  627.                             Top,            // Top position
  628.                             Width,          // Window width
  629.                             Height,         // Window height
  630.                             WindowFlags);   // Show window flags
  631.     ASSERT(bSuccess);
  632. #ifdef DEBUG
  633.     DbgLog((LOG_TRACE, 1, TEXT("SWP failed error %d"), GetLastError()));
  634. #endif
  635.     if (bSuccess == FALSE) {
  636.         return E_INVALIDARG;
  637.     }
  638.     return NOERROR;
  639. }
  640. // This complements the SetWindowPosition to return the current window place
  641. // in device coordinates. As before the same information can be retrived by
  642. // calling the property get functions individually but this is atomic and is
  643. // therefore more suitable to a live environment rather than design time
  644. STDMETHODIMP
  645. CBaseControlWindow::GetWindowPosition(long *pLeft,long *pTop,long *pWidth,long *pHeight)
  646. {
  647.     // Should check the pointers are not NULL
  648.     CheckPointer(pLeft,E_POINTER);
  649.     CheckPointer(pTop,E_POINTER);
  650.     CheckPointer(pWidth,E_POINTER);
  651.     CheckPointer(pHeight,E_POINTER);
  652.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  653.     RECT WindowRect;
  654.     // Get the current window coordinates
  655.     EXECUTE_ASSERT(GetWindowRect(m_hwnd,&WindowRect));
  656.     // Convert the RECT into left,top,width and height values
  657.     *pLeft = WindowRect.left;
  658.     *pTop = WindowRect.top;
  659.     *pWidth = WindowRect.right - WindowRect.left;
  660.     *pHeight = WindowRect.bottom - WindowRect.top;
  661.     return NOERROR;
  662. }
  663. // When a window is maximised or iconic calling GetWindowPosition will return
  664. // the current window position (likewise for the properties). However if the
  665. // restored size (ie the size we'll return to when normally shown) is needed
  666. // then this should be used. When in a normal position (neither iconic nor
  667. // maximised) then this returns the same coordinates as GetWindowPosition
  668. STDMETHODIMP
  669. CBaseControlWindow::GetRestorePosition(long *pLeft,long *pTop,long *pWidth,long *pHeight)
  670. {
  671.     // Should check the pointers are not NULL
  672.     CheckPointer(pLeft,E_POINTER);
  673.     CheckPointer(pTop,E_POINTER);
  674.     CheckPointer(pWidth,E_POINTER);
  675.     CheckPointer(pHeight,E_POINTER);
  676.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  677.     // Use GetWindowPlacement to find the restore position
  678.     WINDOWPLACEMENT Place;
  679.     Place.length = sizeof(WINDOWPLACEMENT);
  680.     EXECUTE_ASSERT(GetWindowPlacement(m_hwnd,&Place));
  681.     RECT WorkArea;
  682.     // We must take into account any task bar present
  683.     if (SystemParametersInfo(SPI_GETWORKAREA,0,&WorkArea,FALSE) == TRUE) {
  684.         if (GetParent(m_hwnd) == NULL) {
  685.             Place.rcNormalPosition.top += WorkArea.top;
  686.             Place.rcNormalPosition.bottom += WorkArea.top;
  687.             Place.rcNormalPosition.left += WorkArea.left;
  688.             Place.rcNormalPosition.right += WorkArea.left;
  689.         }
  690.     }
  691.     // Convert the RECT into left,top,width and height values
  692.     *pLeft = Place.rcNormalPosition.left;
  693.     *pTop = Place.rcNormalPosition.top;
  694.     *pWidth = Place.rcNormalPosition.right - Place.rcNormalPosition.left;
  695.     *pHeight = Place.rcNormalPosition.bottom - Place.rcNormalPosition.top;
  696.     return NOERROR;
  697. }
  698. // Return the current border colour, if we are playing something to a subset
  699. // of the base window display there is an outside area exposed. The default
  700. // action is to paint this colour in the Windows background colour (defined
  701. // as value COLOR_WINDOW) We reset to this default when we're disconnected
  702. STDMETHODIMP CBaseControlWindow::get_BorderColor(long *Color)
  703. {
  704.     CheckPointer(Color,E_POINTER);
  705.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  706.     *Color = (long) m_BorderColour;
  707.     return NOERROR;
  708. }
  709. // This can be called to set the current border colour
  710. STDMETHODIMP CBaseControlWindow::put_BorderColor(long Color)
  711. {
  712.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  713.     // Have the window repainted with the new border colour
  714.     m_BorderColour = (COLORREF) Color;
  715.     PaintWindow(TRUE);
  716.     return NOERROR;
  717. }
  718. // Delegate fullscreen handling to plug in distributor
  719. STDMETHODIMP CBaseControlWindow::get_FullScreenMode(long *FullScreenMode)
  720. {
  721.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  722.     CheckPointer(FullScreenMode,E_POINTER);
  723.     return E_NOTIMPL;
  724. }
  725. // Delegate fullscreen handling to plug in distributor
  726. STDMETHODIMP CBaseControlWindow::put_FullScreenMode(long FullScreenMode)
  727. {
  728.     return E_NOTIMPL;
  729. }
  730. // This sets the auto show property, this property causes the base window to
  731. // be displayed whenever we change state. This allows an application to have
  732. // to do nothing to have the window appear but still allow them to change the
  733. // default behaviour if for example they want to keep it hidden for longer
  734. STDMETHODIMP CBaseControlWindow::put_AutoShow(long AutoShow)
  735. {
  736.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  737.     // Check this is a valid automation boolean type
  738.     if (AutoShow != OATRUE) {
  739.         if (AutoShow != OAFALSE) {
  740.             return E_INVALIDARG;
  741.         }
  742.     }
  743.     m_bAutoShow = (AutoShow == OATRUE ? TRUE : FALSE);
  744.     return NOERROR;
  745. }
  746. // This can be called to get the current auto show flag. The flag is updated
  747. // when we connect and disconnect and through this interface all of which are
  748. // controlled and serialised by means of the main renderer critical section
  749. STDMETHODIMP CBaseControlWindow::get_AutoShow(long *AutoShow)
  750. {
  751.     CheckPointer(AutoShow,E_POINTER);
  752.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  753.     *AutoShow = (m_bAutoShow == TRUE ? OATRUE : OAFALSE);
  754.     return NOERROR;
  755. }
  756. // Return the minimum ideal image size for the current video. This may differ
  757. // to the actual video dimensions because we may be using DirectDraw hardware
  758. // that has specific stretching requirements. For example the Cirrus Logic
  759. // cards have a minimum stretch factor depending on the overlay surface size
  760. STDMETHODIMP
  761. CBaseControlWindow::GetMinIdealImageSize(long *pWidth,long *pHeight)
  762. {
  763.     CheckPointer(pWidth,E_POINTER);
  764.     CheckPointer(pHeight,E_POINTER);
  765.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  766.     FILTER_STATE State;
  767.     // Must not be stopped for this to work correctly
  768.     m_pFilter->GetState(0,&State);
  769.     if (State == State_Stopped) {
  770.         return VFW_E_WRONG_STATE;
  771.     }
  772.     RECT DefaultRect = GetDefaultRect();
  773.     *pWidth = WIDTH(&DefaultRect);
  774.     *pHeight = HEIGHT(&DefaultRect);
  775.     return NOERROR;
  776. }
  777. // Return the maximum ideal image size for the current video. This may differ
  778. // to the actual video dimensions because we may be using DirectDraw hardware
  779. // that has specific stretching requirements. For example the Cirrus Logic
  780. // cards have a maximum stretch factor depending on the overlay surface size
  781. STDMETHODIMP
  782. CBaseControlWindow::GetMaxIdealImageSize(long *pWidth,long *pHeight)
  783. {
  784.     CheckPointer(pWidth,E_POINTER);
  785.     CheckPointer(pHeight,E_POINTER);
  786.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  787.     FILTER_STATE State;
  788.     // Must not be stopped for this to work correctly
  789.     m_pFilter->GetState(0,&State);
  790.     if (State == State_Stopped) {
  791.         return VFW_E_WRONG_STATE;
  792.     }
  793.     RECT DefaultRect = GetDefaultRect();
  794.     *pWidth = WIDTH(&DefaultRect);
  795.     *pHeight = HEIGHT(&DefaultRect);
  796.     return NOERROR;
  797. }
  798. // Allow an application to hide the cursor on our window
  799. STDMETHODIMP
  800. CBaseControlWindow::HideCursor(long HideCursor)
  801. {
  802.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  803.     // Check this is a valid automation boolean type
  804.     if (HideCursor != OATRUE) {
  805.         if (HideCursor != OAFALSE) {
  806.             return E_INVALIDARG;
  807.         }
  808.     }
  809.     m_bCursorHidden = (HideCursor == OATRUE ? TRUE : FALSE);
  810.     return NOERROR;
  811. }
  812. // Returns whether we have the cursor hidden or not
  813. STDMETHODIMP CBaseControlWindow::IsCursorHidden(long *CursorHidden)
  814. {
  815.     CheckPointer(CursorHidden,E_POINTER);
  816.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  817.     *CursorHidden = (m_bCursorHidden == TRUE ? OATRUE : OAFALSE);
  818.     return NOERROR;
  819. }
  820. // This class implements the IBasicVideo control functions (dual interface)
  821. // we support a large number of properties and methods designed to allow the
  822. // client (whether it be an automation controller or a C/C++ application) to
  823. // set and get a number of video related properties such as the native video
  824. // size. We support some methods that duplicate the properties but provide a
  825. // more direct and efficient mechanism as many values may be changed in one
  826. CBaseControlVideo::CBaseControlVideo(
  827.                         CBaseFilter *pFilter,        // Owning filter
  828.                         CCritSec *pInterfaceLock,    // Locking object
  829.                         TCHAR *pName,                // Object description
  830.                         LPUNKNOWN pUnk,              // Normal COM ownership
  831.                         HRESULT *phr) :              // OLE return code
  832.     CBaseBasicVideo(pName,pUnk),
  833.     m_pFilter(pFilter),
  834.     m_pInterfaceLock(pInterfaceLock),
  835.     m_pPin(NULL)
  836. {
  837.     ASSERT(m_pFilter);
  838.     ASSERT(m_pInterfaceLock);
  839.     ASSERT(phr);
  840. }
  841. // Return an approximate average time per frame
  842. STDMETHODIMP CBaseControlVideo::get_AvgTimePerFrame(REFTIME *pAvgTimePerFrame)
  843. {
  844.     CheckPointer(pAvgTimePerFrame,E_POINTER);
  845.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  846.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  847.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  848.     if (pVideoInfo == NULL)
  849.     return E_OUTOFMEMORY;
  850.     COARefTime AvgTime(pVideoInfo->AvgTimePerFrame);
  851.     *pAvgTimePerFrame = (REFTIME) AvgTime;
  852.     return NOERROR;
  853. }
  854. // Return an approximate bit rate for the video
  855. STDMETHODIMP CBaseControlVideo::get_BitRate(long *pBitRate)
  856. {
  857.     CheckPointer(pBitRate,E_POINTER);
  858.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  859.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  860.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  861.     if (pVideoInfo == NULL)
  862.     return E_OUTOFMEMORY;
  863.     *pBitRate = pVideoInfo->dwBitRate;
  864.     return NOERROR;
  865. }
  866. // Return an approximate bit error rate
  867. STDMETHODIMP CBaseControlVideo::get_BitErrorRate(long *pBitErrorRate)
  868. {
  869.     CheckPointer(pBitErrorRate,E_POINTER);
  870.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  871.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  872.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  873.     if (pVideoInfo == NULL)
  874.     return E_OUTOFMEMORY;
  875.     *pBitErrorRate = pVideoInfo->dwBitErrorRate;
  876.     return NOERROR;
  877. }
  878. // This returns the current video width
  879. STDMETHODIMP CBaseControlVideo::get_VideoWidth(long *pVideoWidth)
  880. {
  881.     CheckPointer(pVideoWidth,E_POINTER);
  882.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  883.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  884.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  885.     if (pVideoInfo == NULL)
  886.     return E_OUTOFMEMORY;
  887.     *pVideoWidth = pVideoInfo->bmiHeader.biWidth;
  888.     return NOERROR;
  889. }
  890. // This returns the current video height
  891. STDMETHODIMP CBaseControlVideo::get_VideoHeight(long *pVideoHeight)
  892. {
  893.     CheckPointer(pVideoHeight,E_POINTER);
  894.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  895.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  896.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  897.     if (pVideoInfo == NULL)
  898.     return E_OUTOFMEMORY;
  899.     *pVideoHeight = pVideoInfo->bmiHeader.biHeight;
  900.     return NOERROR;
  901. }
  902. // This returns the current palette the video is using as an array allocated
  903. // by the user. To remain consistent we use PALETTEENTRY fields to return the
  904. // colours in rather than RGBQUADs that multimedia decided to use. The memory
  905. // is allocated by the user so we simple copy each in turn. We check that the
  906. // number of entries requested and the start position offset are both valid
  907. // If the number of entries evaluates to zero then we return an S_FALSE code
  908. STDMETHODIMP CBaseControlVideo::GetVideoPaletteEntries(long StartIndex,
  909.                                                        long Entries,
  910.                                                        long *pRetrieved,
  911.                                                        long *pPalette)
  912. {
  913.     CheckPointer(pRetrieved,E_POINTER);
  914.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  915.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  916.     CMediaType MediaType;
  917.     // Get the video format from the derived class
  918.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  919.     if (pVideoInfo == NULL)
  920.     return E_OUTOFMEMORY;
  921.     BITMAPINFOHEADER *pHeader = HEADER(pVideoInfo);
  922.     // Is the current format palettised
  923.     if (PALETTISED(pVideoInfo) == FALSE) {
  924.         *pRetrieved = 0;
  925.         return VFW_E_NO_PALETTE_AVAILABLE;
  926.     }
  927.     // Do they just want to know how many are available
  928.     if (pPalette == NULL) {
  929.         *pRetrieved = pHeader->biClrUsed;
  930.         return NOERROR;
  931.     }
  932.     // Make sure the start position is a valid offset
  933.     if (StartIndex >= (LONG) pHeader->biClrUsed || StartIndex < 0) {
  934.         *pRetrieved = 0;
  935.         return E_INVALIDARG;
  936.     }
  937.     // Correct the number we can retrieve
  938.     LONG Available = (LONG) pHeader->biClrUsed - StartIndex;
  939.     *pRetrieved = max(0,min(Available,Entries));
  940.     if (*pRetrieved == 0) {
  941.         return S_FALSE;
  942.     }
  943.     // Copy the palette entries to the output buffer
  944.     PALETTEENTRY *pEntries = (PALETTEENTRY *) pPalette;
  945.     RGBQUAD *pColours = COLORS(pVideoInfo) + StartIndex;
  946.     for (LONG Count = 0;Count < *pRetrieved;Count++) {
  947.         pEntries[Count].peRed = pColours[Count].rgbRed;
  948.         pEntries[Count].peGreen = pColours[Count].rgbGreen;
  949.         pEntries[Count].peBlue = pColours[Count].rgbBlue;
  950.         pEntries[Count].peFlags = 0;
  951.     }
  952.     return NOERROR;
  953. }
  954. // This returns the current video dimensions as a method rather than a number
  955. // of individual property get calls. For the same reasons as said before we
  956. // cannot access the renderer media type directly as the window object thread
  957. // may be updating it since dynamic format changes may change these values
  958. STDMETHODIMP CBaseControlVideo::GetVideoSize(long *pWidth,long *pHeight)
  959. {
  960.     CheckPointer(pWidth,E_POINTER);
  961.     CheckPointer(pHeight,E_POINTER);
  962.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  963.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  964.     // Get the video format from the derived class
  965.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  966.     if (pVideoInfo == NULL)
  967.     return E_OUTOFMEMORY;
  968.     *pWidth = pVideoInfo->bmiHeader.biWidth;
  969.     *pHeight = pVideoInfo->bmiHeader.biHeight;
  970.     return NOERROR;
  971. }
  972. // Set the source video rectangle as left,top,right and bottom coordinates
  973. // rather than left,top,width and height as per OLE automation interfaces
  974. // Then pass the rectangle on to the window object to set the source
  975. STDMETHODIMP
  976. CBaseControlVideo::SetSourcePosition(long Left,long Top,long Width,long Height)
  977. {
  978.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  979.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  980.     RECT SourceRect;
  981.     SourceRect.left = Left;
  982.     SourceRect.top = Top;
  983.     SourceRect.right = Left + Width;
  984.     SourceRect.bottom = Top + Height;
  985.     // Check the source rectangle is valid
  986.     HRESULT hr = CheckSourceRect(&SourceRect);
  987.     if (FAILED(hr)) {
  988.         return hr;
  989.     }
  990.     // Now set the source rectangle
  991.     hr = SetSourceRect(&SourceRect);
  992.     if (FAILED(hr)) {
  993.         return hr;
  994.     }
  995.     return OnUpdateRectangles();
  996. }
  997. // Return the source rectangle in left,top,width and height rather than the
  998. // left,top,right and bottom values that RECT uses (and which the window
  999. // object returns through GetSourceRect) which requires a little work
  1000. STDMETHODIMP
  1001. CBaseControlVideo::GetSourcePosition(long *pLeft,long *pTop,long *pWidth,long *pHeight)
  1002. {
  1003.     CheckPointer(pLeft,E_POINTER);
  1004.     CheckPointer(pTop,E_POINTER);
  1005.     CheckPointer(pWidth,E_POINTER);
  1006.     CheckPointer(pHeight,E_POINTER);
  1007.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1008.     RECT SourceRect;
  1009.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1010.     GetSourceRect(&SourceRect);
  1011.     *pLeft = SourceRect.left;
  1012.     *pTop = SourceRect.top;
  1013.     *pWidth = WIDTH(&SourceRect);
  1014.     *pHeight = HEIGHT(&SourceRect);
  1015.     return NOERROR;
  1016. }
  1017. // Set the video destination as left,top,right and bottom coordinates rather
  1018. // than the left,top,width and height uses as per OLE automation interfaces
  1019. // Then pass the rectangle on to the window object to set the destination
  1020. STDMETHODIMP
  1021. CBaseControlVideo::SetDestinationPosition(long Left,long Top,long Width,long Height)
  1022. {
  1023.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1024.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1025.     RECT DestinationRect;
  1026.     DestinationRect.left = Left;
  1027.     DestinationRect.top = Top;
  1028.     DestinationRect.right = Left + Width;
  1029.     DestinationRect.bottom = Top + Height;
  1030.     // Check the target rectangle is valid
  1031.     HRESULT hr = CheckTargetRect(&DestinationRect);
  1032.     if (FAILED(hr)) {
  1033.         return hr;
  1034.     }
  1035.     // Now set the new target rectangle
  1036.     hr = SetTargetRect(&DestinationRect);
  1037.     if (FAILED(hr)) {
  1038.         return hr;
  1039.     }
  1040.     return OnUpdateRectangles();
  1041. }
  1042. // Return the destination rectangle in left,top,width and height rather than
  1043. // the left,top,right and bottom values that RECT uses (and which the window
  1044. // object returns through GetDestinationRect) which requires a little work
  1045. STDMETHODIMP
  1046. CBaseControlVideo::GetDestinationPosition(long *pLeft,long *pTop,long *pWidth,long *pHeight)
  1047. {
  1048.     // Should check the pointers are not NULL
  1049.     CheckPointer(pLeft,E_POINTER);
  1050.     CheckPointer(pTop,E_POINTER);
  1051.     CheckPointer(pWidth,E_POINTER);
  1052.     CheckPointer(pHeight,E_POINTER);
  1053.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1054.     RECT DestinationRect;
  1055.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1056.     GetTargetRect(&DestinationRect);
  1057.     *pLeft = DestinationRect.left;
  1058.     *pTop = DestinationRect.top;
  1059.     *pWidth = WIDTH(&DestinationRect);
  1060.     *pHeight = HEIGHT(&DestinationRect);
  1061.     return NOERROR;
  1062. }
  1063. // Set the source left position, the source rectangle we get back from the
  1064. // window object is a true rectangle in left,top,right and bottom positions
  1065. // so all we have to do is to update the left position and pass it back. We
  1066. // must keep the current width constant when we're updating this property
  1067. STDMETHODIMP CBaseControlVideo::put_SourceLeft(long SourceLeft)
  1068. {
  1069.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1070.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1071.     RECT SourceRect;
  1072.     GetSourceRect(&SourceRect);
  1073.     SourceRect.right = SourceLeft + WIDTH(&SourceRect);
  1074.     SourceRect.left = SourceLeft;
  1075.     // Check the source rectangle is valid
  1076.     HRESULT hr = CheckSourceRect(&SourceRect);
  1077.     if (FAILED(hr)) {
  1078.         return hr;
  1079.     }
  1080.     // Now set the source rectangle
  1081.     hr = SetSourceRect(&SourceRect);
  1082.     if (FAILED(hr)) {
  1083.         return hr;
  1084.     }
  1085.     return OnUpdateRectangles();
  1086. }
  1087. // Return the current left source video position
  1088. STDMETHODIMP CBaseControlVideo::get_SourceLeft(long *pSourceLeft)
  1089. {
  1090.     CheckPointer(pSourceLeft,E_POINTER);
  1091.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1092.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1093.     RECT SourceRect;
  1094.     GetSourceRect(&SourceRect);
  1095.     *pSourceLeft = SourceRect.left;
  1096.     return NOERROR;
  1097. }
  1098. // Set the source width, we get the current source rectangle and then update
  1099. // the right position to be the left position (thereby keeping it constant)
  1100. // plus the new source width we are passed in (it expands to the right)
  1101. STDMETHODIMP CBaseControlVideo::put_SourceWidth(long SourceWidth)
  1102. {
  1103.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1104.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1105.     RECT SourceRect;
  1106.     GetSourceRect(&SourceRect);
  1107.     SourceRect.right = SourceRect.left + SourceWidth;
  1108.     // Check the source rectangle is valid
  1109.     HRESULT hr = CheckSourceRect(&SourceRect);
  1110.     if (FAILED(hr)) {
  1111.         return hr;
  1112.     }
  1113.     // Now set the source rectangle
  1114.     hr = SetSourceRect(&SourceRect);
  1115.     if (FAILED(hr)) {
  1116.         return hr;
  1117.     }
  1118.     return OnUpdateRectangles();
  1119. }
  1120. // Return the current source width
  1121. STDMETHODIMP CBaseControlVideo::get_SourceWidth(long *pSourceWidth)
  1122. {
  1123.     CheckPointer(pSourceWidth,E_POINTER);
  1124.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1125.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1126.     RECT SourceRect;
  1127.     GetSourceRect(&SourceRect);
  1128.     *pSourceWidth = WIDTH(&SourceRect);
  1129.     return NOERROR;
  1130. }
  1131. // Set the source top position - changing this property does not affect the
  1132. // current source height. So changing this shunts the source rectangle up and
  1133. // down appropriately. Changing the height complements this functionality by
  1134. // keeping the top position constant and simply changing the source height
  1135. STDMETHODIMP CBaseControlVideo::put_SourceTop(long SourceTop)
  1136. {
  1137.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1138.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1139.     RECT SourceRect;
  1140.     GetSourceRect(&SourceRect);
  1141.     SourceRect.bottom = SourceTop + HEIGHT(&SourceRect);
  1142.     SourceRect.top = SourceTop;
  1143.     // Check the source rectangle is valid
  1144.     HRESULT hr = CheckSourceRect(&SourceRect);
  1145.     if (FAILED(hr)) {
  1146.         return hr;
  1147.     }
  1148.     // Now set the source rectangle
  1149.     hr = SetSourceRect(&SourceRect);
  1150.     if (FAILED(hr)) {
  1151.         return hr;
  1152.     }
  1153.     return OnUpdateRectangles();
  1154. }
  1155. // Return the current top position
  1156. STDMETHODIMP CBaseControlVideo::get_SourceTop(long *pSourceTop)
  1157. {
  1158.     CheckPointer(pSourceTop,E_POINTER);
  1159.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1160.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1161.     RECT SourceRect;
  1162.     GetSourceRect(&SourceRect);
  1163.     *pSourceTop = SourceRect.top;
  1164.     return NOERROR;
  1165. }
  1166. // Set the source height
  1167. STDMETHODIMP CBaseControlVideo::put_SourceHeight(long SourceHeight)
  1168. {
  1169.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1170.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1171.     RECT SourceRect;
  1172.     GetSourceRect(&SourceRect);
  1173.     SourceRect.bottom = SourceRect.top + SourceHeight;
  1174.     // Check the source rectangle is valid
  1175.     HRESULT hr = CheckSourceRect(&SourceRect);
  1176.     if (FAILED(hr)) {
  1177.         return hr;
  1178.     }
  1179.     // Now set the source rectangle
  1180.     hr = SetSourceRect(&SourceRect);
  1181.     if (FAILED(hr)) {
  1182.         return hr;
  1183.     }
  1184.     return OnUpdateRectangles();
  1185. }
  1186. // Return the current source height
  1187. STDMETHODIMP CBaseControlVideo::get_SourceHeight(long *pSourceHeight)
  1188. {
  1189.     CheckPointer(pSourceHeight,E_POINTER);
  1190.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1191.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1192.     RECT SourceRect;
  1193.     GetSourceRect(&SourceRect);
  1194.     *pSourceHeight = HEIGHT(&SourceRect);
  1195.     return NOERROR;
  1196. }
  1197. // Set the target left position, the target rectangle we get back from the
  1198. // window object is a true rectangle in left,top,right and bottom positions
  1199. // so all we have to do is to update the left position and pass it back. We
  1200. // must keep the current width constant when we're updating this property
  1201. STDMETHODIMP CBaseControlVideo::put_DestinationLeft(long DestinationLeft)
  1202. {
  1203.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1204.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1205.     RECT DestinationRect;
  1206.     GetTargetRect(&DestinationRect);
  1207.     DestinationRect.right = DestinationLeft + WIDTH(&DestinationRect);
  1208.     DestinationRect.left = DestinationLeft;
  1209.     // Check the target rectangle is valid
  1210.     HRESULT hr = CheckTargetRect(&DestinationRect);
  1211.     if (FAILED(hr)) {
  1212.         return hr;
  1213.     }
  1214.     // Now set the new target rectangle
  1215.     hr = SetTargetRect(&DestinationRect);
  1216.     if (FAILED(hr)) {
  1217.         return hr;
  1218.     }
  1219.     return OnUpdateRectangles();
  1220. }
  1221. // Return the left position for the destination rectangle
  1222. STDMETHODIMP CBaseControlVideo::get_DestinationLeft(long *pDestinationLeft)
  1223. {
  1224.     CheckPointer(pDestinationLeft,E_POINTER);
  1225.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1226.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1227.     RECT DestinationRect;
  1228.     GetTargetRect(&DestinationRect);
  1229.     *pDestinationLeft = DestinationRect.left;
  1230.     return NOERROR;
  1231. }
  1232. // Set the destination width
  1233. STDMETHODIMP CBaseControlVideo::put_DestinationWidth(long DestinationWidth)
  1234. {
  1235.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1236.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1237.     RECT DestinationRect;
  1238.     GetTargetRect(&DestinationRect);
  1239.     DestinationRect.right = DestinationRect.left + DestinationWidth;
  1240.     // Check the target rectangle is valid
  1241.     HRESULT hr = CheckTargetRect(&DestinationRect);
  1242.     if (FAILED(hr)) {
  1243.         return hr;
  1244.     }
  1245.     // Now set the new target rectangle
  1246.     hr = SetTargetRect(&DestinationRect);
  1247.     if (FAILED(hr)) {
  1248.         return hr;
  1249.     }
  1250.     return OnUpdateRectangles();
  1251. }
  1252. // Return the width for the destination rectangle
  1253. STDMETHODIMP CBaseControlVideo::get_DestinationWidth(long *pDestinationWidth)
  1254. {
  1255.     CheckPointer(pDestinationWidth,E_POINTER);
  1256.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1257.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1258.     RECT DestinationRect;
  1259.     GetTargetRect(&DestinationRect);
  1260.     *pDestinationWidth = WIDTH(&DestinationRect);
  1261.     return NOERROR;
  1262. }
  1263. // Set the target top position - changing this property does not affect the
  1264. // current target height. So changing this shunts the target rectangle up and
  1265. // down appropriately. Changing the height complements this functionality by
  1266. // keeping the top position constant and simply changing the target height
  1267. STDMETHODIMP CBaseControlVideo::put_DestinationTop(long DestinationTop)
  1268. {
  1269.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1270.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1271.     RECT DestinationRect;
  1272.     GetTargetRect(&DestinationRect);
  1273.     DestinationRect.bottom = DestinationTop + HEIGHT(&DestinationRect);
  1274.     DestinationRect.top = DestinationTop;
  1275.     // Check the target rectangle is valid
  1276.     HRESULT hr = CheckTargetRect(&DestinationRect);
  1277.     if (FAILED(hr)) {
  1278.         return hr;
  1279.     }
  1280.     // Now set the new target rectangle
  1281.     hr = SetTargetRect(&DestinationRect);
  1282.     if (FAILED(hr)) {
  1283.         return hr;
  1284.     }
  1285.     return OnUpdateRectangles();
  1286. }
  1287. // Return the top position for the destination rectangle
  1288. STDMETHODIMP CBaseControlVideo::get_DestinationTop(long *pDestinationTop)
  1289. {
  1290.     CheckPointer(pDestinationTop,E_POINTER);
  1291.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1292.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1293.     RECT DestinationRect;
  1294.     GetTargetRect(&DestinationRect);
  1295.     *pDestinationTop = DestinationRect.top;
  1296.     return NOERROR;
  1297. }
  1298. // Set the destination height
  1299. STDMETHODIMP CBaseControlVideo::put_DestinationHeight(long DestinationHeight)
  1300. {
  1301.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1302.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1303.     RECT DestinationRect;
  1304.     GetTargetRect(&DestinationRect);
  1305.     DestinationRect.bottom = DestinationRect.top + DestinationHeight;
  1306.     // Check the target rectangle is valid
  1307.     HRESULT hr = CheckTargetRect(&DestinationRect);
  1308.     if (FAILED(hr)) {
  1309.         return hr;
  1310.     }
  1311.     // Now set the new target rectangle
  1312.     hr = SetTargetRect(&DestinationRect);
  1313.     if (FAILED(hr)) {
  1314.         return hr;
  1315.     }
  1316.     return OnUpdateRectangles();
  1317. }
  1318. // Return the height for the destination rectangle
  1319. STDMETHODIMP CBaseControlVideo::get_DestinationHeight(long *pDestinationHeight)
  1320. {
  1321.     CheckPointer(pDestinationHeight,E_POINTER);
  1322.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1323.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1324.     RECT DestinationRect;
  1325.     GetTargetRect(&DestinationRect);
  1326.     *pDestinationHeight = HEIGHT(&DestinationRect);
  1327.     return NOERROR;
  1328. }
  1329. // Reset the source rectangle to the full video dimensions
  1330. STDMETHODIMP CBaseControlVideo::SetDefaultSourcePosition()
  1331. {
  1332.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1333.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1334.     HRESULT hr = SetDefaultSourceRect();
  1335.     if (FAILED(hr)) {
  1336.         return hr;
  1337.     }
  1338.     return OnUpdateRectangles();
  1339. }
  1340. // Return S_OK if we're using the default source otherwise S_FALSE
  1341. STDMETHODIMP CBaseControlVideo::IsUsingDefaultSource()
  1342. {
  1343.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1344.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1345.     return IsDefaultSourceRect();
  1346. }
  1347. // Reset the video renderer to use the entire playback area
  1348. STDMETHODIMP CBaseControlVideo::SetDefaultDestinationPosition()
  1349. {
  1350.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1351.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1352.     HRESULT hr = SetDefaultTargetRect();
  1353.     if (FAILED(hr)) {
  1354.         return hr;
  1355.     }
  1356.     return OnUpdateRectangles();
  1357. }
  1358. // Return S_OK if we're using the default target otherwise S_FALSE
  1359. STDMETHODIMP CBaseControlVideo::IsUsingDefaultDestination()
  1360. {
  1361.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1362.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1363.     return IsDefaultTargetRect();
  1364. }
  1365. // Return a copy of the current image in the video renderer
  1366. STDMETHODIMP
  1367. CBaseControlVideo::GetCurrentImage(long *pBufferSize,long *pVideoImage)
  1368. {
  1369.     CheckPointer(pBufferSize,E_POINTER);
  1370.     CheckConnected(m_pPin,VFW_E_NOT_CONNECTED);
  1371.     CAutoLock cInterfaceLock(m_pInterfaceLock);
  1372.     FILTER_STATE State;
  1373.     // Make sure we are in a paused state
  1374.     if (pVideoImage != NULL) {
  1375.         m_pFilter->GetState(0,&State);
  1376.         if (State != State_Paused) {
  1377.             return VFW_E_NOT_PAUSED;
  1378.         }
  1379.         return GetStaticImage(pBufferSize,pVideoImage);
  1380.     }
  1381.     // Just return the memory required
  1382.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  1383.     if (pVideoInfo == NULL)
  1384.     return E_OUTOFMEMORY;
  1385.     RECT SourceRect;
  1386.     GetSourceRect(&SourceRect);
  1387.     return GetImageSize(pVideoInfo,pBufferSize,&SourceRect);
  1388. }
  1389. // An application has two ways of using GetCurrentImage, one is to pass a real
  1390. // buffer which should be filled with the current image. The other is to pass
  1391. // a NULL buffer pointer which is interpreted as asking us to return how much
  1392. // memory is required for the image. The constraints for when the latter can
  1393. // be called are much looser. To calculate the memory required we synthesize
  1394. // a VIDEOINFO that takes into account the source rectangle that's being used
  1395. HRESULT CBaseControlVideo::GetImageSize(VIDEOINFOHEADER *pVideoInfo,
  1396.                                         LONG *pBufferSize,
  1397.                                         RECT *pSourceRect)
  1398. {
  1399.     NOTE("Entering GetImageSize");
  1400.     ASSERT(pSourceRect);
  1401.     // Check we have the correct input parameters
  1402.     if (pSourceRect == NULL ||
  1403.             pVideoInfo == NULL ||
  1404.             pBufferSize == NULL) {
  1405.         return E_UNEXPECTED;
  1406.     }
  1407.     // Is the data format compatible
  1408.     if (pVideoInfo->bmiHeader.biCompression != BI_RGB) {
  1409.         if (pVideoInfo->bmiHeader.biCompression != BI_BITFIELDS) {
  1410.             return E_INVALIDARG;
  1411.         }
  1412.     }
  1413.     ASSERT(IsRectEmpty(pSourceRect) == FALSE);
  1414.     BITMAPINFOHEADER bih;
  1415.     bih.biWidth = WIDTH(pSourceRect);
  1416.     bih.biHeight = HEIGHT(pSourceRect);
  1417.     bih.biBitCount = pVideoInfo->bmiHeader.biBitCount;
  1418.     LONG Size = DIBSIZE(bih);
  1419.     Size += GetBitmapFormatSize(HEADER(pVideoInfo)) - SIZE_PREHEADER;
  1420.     *pBufferSize = Size;
  1421.     return NOERROR;
  1422. }
  1423. // Given an IMediaSample containing a linear buffer with an image and a type
  1424. // describing the bitmap make a rendering of the image into the output buffer
  1425. // This may be called by derived classes who render typical video images to
  1426. // handle the IBasicVideo GetCurrentImage method. The pVideoImage pointer may
  1427. // be NULL when passed to GetCurrentImage in which case GetImageSize will be
  1428. // called instead, which will just do the calculation of the memory required
  1429. HRESULT CBaseControlVideo::CopyImage(IMediaSample *pMediaSample,
  1430.                                      VIDEOINFOHEADER *pVideoInfo,
  1431.                                      LONG *pBufferSize,
  1432.                                      BYTE *pVideoImage,
  1433.                                      RECT *pSourceRect)
  1434. {
  1435.     NOTE("Entering CopyImage");
  1436.     ASSERT(pSourceRect);
  1437.     BYTE *pCurrentImage;
  1438.     // Check we have an image to copy
  1439.     if (pMediaSample == NULL || pSourceRect == NULL ||
  1440.             pVideoInfo == NULL || pVideoImage == NULL ||
  1441.             pBufferSize == NULL) {
  1442.         return E_UNEXPECTED;
  1443.     }
  1444.     // Is the data format compatible
  1445.     if (pVideoInfo->bmiHeader.biCompression != BI_RGB) {
  1446.         if (pVideoInfo->bmiHeader.biCompression != BI_BITFIELDS) {
  1447.             return E_INVALIDARG;
  1448.         }
  1449.     }
  1450.     ASSERT(IsRectEmpty(pSourceRect) == FALSE);
  1451.     BITMAPINFOHEADER bih;
  1452.     bih.biWidth = WIDTH(pSourceRect);
  1453.     bih.biHeight = HEIGHT(pSourceRect);
  1454.     bih.biBitCount = pVideoInfo->bmiHeader.biBitCount;
  1455.     LONG Size = GetBitmapFormatSize(HEADER(pVideoInfo)) - SIZE_PREHEADER;
  1456.     LONG Total = Size + DIBSIZE(bih);
  1457.     // Make sure we have a large enough buffer
  1458.     if (*pBufferSize < Total) {
  1459.         return E_OUTOFMEMORY;
  1460.     }
  1461.     // Copy the BITMAPINFO
  1462.     CopyMemory((PVOID)pVideoImage, (PVOID)&pVideoInfo->bmiHeader, Size);
  1463.     ((BITMAPINFOHEADER *)pVideoImage)->biWidth = WIDTH(pSourceRect);
  1464.     ((BITMAPINFOHEADER *)pVideoImage)->biHeight = HEIGHT(pSourceRect);
  1465.     ((BITMAPINFOHEADER *)pVideoImage)->biSizeImage = DIBSIZE(bih);
  1466.     BYTE *pImageData = pVideoImage + Size;
  1467.     // Get the pointer to it's image data
  1468.     HRESULT hr = pMediaSample->GetPointer(&pCurrentImage);
  1469.     if (FAILED(hr)) {
  1470.         return hr;
  1471.     }
  1472.     // Now we are ready to start copying the source scan lines
  1473.     LONG ScanLine = (pVideoInfo->bmiHeader.biBitCount / 8) * WIDTH(pSourceRect);
  1474.     LONG LinesToSkip = pVideoInfo->bmiHeader.biHeight;
  1475.     LinesToSkip -= pSourceRect->top + HEIGHT(pSourceRect);
  1476.     pCurrentImage += LinesToSkip * DIBWIDTHBYTES(pVideoInfo->bmiHeader);
  1477.     pCurrentImage += pSourceRect->left * (pVideoInfo->bmiHeader.biBitCount / 8);
  1478.     // Even money on this GP faulting sometime...
  1479.     for (LONG Line = 0;Line < HEIGHT(pSourceRect);Line++) {
  1480.         CopyMemory((PVOID)pImageData, (PVOID)pCurrentImage, ScanLine);
  1481.         pImageData += DIBWIDTHBYTES(*(BITMAPINFOHEADER *)pVideoImage);
  1482.         pCurrentImage += DIBWIDTHBYTES(pVideoInfo->bmiHeader);
  1483.     }
  1484.     return NOERROR;
  1485. }
  1486. // Called when we change media types either during connection or dynamically
  1487. // We inform the filter graph and therefore the application that the video
  1488. // size may have changed, we don't bother looking to see if it really has as
  1489. // we leave that to the application - the dimensions are the event parameters
  1490. HRESULT CBaseControlVideo::OnVideoSizeChange()
  1491. {
  1492.     // Get the video format from the derived class
  1493.     VIDEOINFOHEADER *pVideoInfo = GetVideoFormat();
  1494.     if (pVideoInfo == NULL)
  1495.     return E_OUTOFMEMORY;
  1496.     WORD Width = (WORD) pVideoInfo->bmiHeader.biWidth;
  1497.     WORD Height = (WORD) pVideoInfo->bmiHeader.biHeight;
  1498.     return m_pFilter->NotifyEvent(EC_VIDEO_SIZE_CHANGED,
  1499.                                   MAKELPARAM(Width,Height),
  1500.                                   MAKEWPARAM(0,0));
  1501. }
  1502. // Set the video source rectangle. We must check the source rectangle against
  1503. // the actual video dimensions otherwise when we come to draw the pictures we
  1504. // get access violations as GDI tries to touch data outside of the image data
  1505. // Although we store the rectangle in left, top, right and bottom coordinates
  1506. // instead of left, top, width and height as OLE uses we do take into account
  1507. // that the rectangle is used up to, but not including, the right column and
  1508. // bottom row of pixels, see the Win32 documentation on RECT for more details
  1509. HRESULT CBaseControlVideo::CheckSourceRect(RECT *pSourceRect)
  1510. {
  1511.     CheckPointer(pSourceRect,E_POINTER);
  1512.     LONG Width,Height;
  1513.     GetVideoSize(&Width,&Height);
  1514.     // Check the coordinates are greater than zero
  1515.     // and that the rectangle is valid (left<right, top<bottom)
  1516.     if ((pSourceRect->left >= pSourceRect->right) ||
  1517.        (pSourceRect->left < 0) ||
  1518.        (pSourceRect->top >= pSourceRect->bottom) ||
  1519.        (pSourceRect->top < 0)) {
  1520.         return E_INVALIDARG;
  1521.     }
  1522.     // Check the coordinates are less than the extents
  1523.     if ((pSourceRect->right > Width) ||
  1524.         (pSourceRect->bottom > Height)) {
  1525.         return E_INVALIDARG;
  1526.     }
  1527.     return NOERROR;
  1528. }
  1529. // Check the target rectangle has some valid coordinates, which amounts to
  1530. // little more than checking the destination rectangle isn't empty. Derived
  1531. // classes may call this when they have their SetTargetRect method called to
  1532. // check the rectangle validity, we do not update the rectangles passed in
  1533. // Although we store the rectangle in left, top, right and bottom coordinates
  1534. // instead of left, top, width and height as OLE uses we do take into account
  1535. // that the rectangle is used up to, but not including, the right column and
  1536. // bottom row of pixels, see the Win32 documentation on RECT for more details
  1537. HRESULT CBaseControlVideo::CheckTargetRect(RECT *pTargetRect)
  1538. {
  1539.     // Check the pointer is valid
  1540.     if (pTargetRect == NULL) {
  1541.         return E_POINTER;
  1542.     }
  1543.     // These overflow the WIDTH and HEIGHT checks
  1544.     if (pTargetRect->left > pTargetRect->right ||
  1545.             pTargetRect->top > pTargetRect->bottom) {
  1546.                 return E_INVALIDARG;
  1547.     }
  1548.     // Check the rectangle has valid coordinates
  1549.     if (WIDTH(pTargetRect) <= 0 || HEIGHT(pTargetRect) <= 0) {
  1550.         return E_INVALIDARG;
  1551.     }
  1552.     ASSERT(IsRectEmpty(pTargetRect) == FALSE);
  1553.     return NOERROR;
  1554. }