다음을 통해 공유


CSSTREAM_ALLOCATOR (Compact 2013)

3/26/2014

This structure specifies the number of buffers the driver should create when the driver is the allocator. When the client itself is the allocator, this structure is used to pass down the number of buffers allocated by the client.

Syntax

typedef struct {
  ULONG  DesiredCount;
  ULONG  ActualCount;
  LPVOID pBuffers;
} CSSTREAM_ALLOCATOR, * PCSSTREAM_ALLOCATOR;

Members

  • DesiredCount
    A ULONG value that specify the number of buffers that should be allocated.
  • ActualCount
    A ULONG value that specifies the number of buffers that actually were allocated.
  • pBuffers
    A pointer to the allocated buffers.

Requirements

Header

csmedia.h

See Also

Reference

Camera Driver Structures