29 lines
729 B
C++
29 lines
729 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// MFT_Grayscale.h: Main header.
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include <mfapi.h>
|
|
#include <mftransform.h>
|
|
#include <mfidl.h>
|
|
#include <mferror.h>
|
|
|
|
#include <shlwapi.h> // registry stuff
|
|
|
|
#include <strsafe.h>
|
|
|
|
#define USE_LOGGING
|
|
#include "common.h"
|
|
using namespace MediaFoundationSamples;
|
|
|