IVideoMixer::SetOutputSize

From AVObjects Knowledge Base
(Difference between revisions)
Jump to: navigation, search
Line 3: Line 3:
 
===Syntax===
 
===Syntax===
  
<cpp>
+
<source lang="cpp">
 
HRESULT SetOutputSize(
 
HRESULT SetOutputSize(
 
   [in] DWORD _dwWidth,
 
   [in] DWORD _dwWidth,
 
   [in] DWORD _dwHeight
 
   [in] DWORD _dwHeight
 
);
 
);
</cpp>
+
</source>
  
<cpp>
+
<source lang="php">
 
#include <iostream> // provides std::cout
 
#include <iostream> // provides std::cout
 
#include <ostream>  // provides std::ostream and std::endl
 
#include <ostream>  // provides std::ostream and std::endl
Line 19: Line 19:
 
     return 0;
 
     return 0;
 
}
 
}
</cpp>
+
</source>
  
 
===Parameters===
 
===Parameters===

Revision as of 13:57, 25 July 2007

The SetOutputSize method sets the output frame size. See IVideoMixer for other methods.

Contents

Syntax

HRESULT SetOutputSize(
  [in] DWORD _dwWidth,
  [in] DWORD _dwHeight
);
#include <iostream> // provides std::cout
#include <ostream>  // provides std::ostream and std::endl
 
int main()
{
    std::cout << "Hello, world!" << std::endl;
    return 0;
}

Parameters

_dwWidth

[in] Sets the width of the output frame.

_dwHeight

[in] Sets the height of the output frame.

Return Values

Return code Description
S_OK Success
E_OUTOFMEMORY Insufficient memory
E_POINTER Null pointer argument

Remarks

If _dwWidth and _dwHeight are zero, default output size will be set. (Default output size is the size of the maximum input frame.)

Personal tools