IBasicVideoEffect.SupportedMemoryTypes 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
사용자 지정 비디오 효과가 GPU 메모리 또는 CPU 메모리 사용을 지원하는지 여부를 나타내는 값을 가져옵니다.
public:
property MediaMemoryTypes SupportedMemoryTypes { MediaMemoryTypes get(); };
MediaMemoryTypes SupportedMemoryTypes();
public MediaMemoryTypes SupportedMemoryTypes { get; }
var mediaMemoryTypes = iBasicVideoEffect.supportedMemoryTypes;
Public ReadOnly Property SupportedMemoryTypes As MediaMemoryTypes
속성 값
사용자 지정 비디오 효과의 지원되는 메모리 유형을 나타내는 값입니다.
설명
효과에 대한 메모리 유형을 설정할 때 MediaMemoryTypes.GpuAndCpu 를 지정하는 경우 시스템은 GPU 또는 시스템 메모리 중 하나를 사용하여 파이프라인에 더 효율적입니다. 이 값을 사용하는 경우 ProcessFrame 메서드에서 검사 메서드에 전달된 SoftwareBitmap 또는 IDirect3DSurface에 데이터가 포함되어 있는지 확인하고 그에 따라 프레임을 처리해야 합니다.