blob: a576d9a1d3d162e19d549698c99a5b54c659e8e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/**************************************************************************
A/V Stream Camera Sample
Copyright (c) 2014, Microsoft Corporation.
File:
VideoHwSim.h
Abstract:
A fake h/w simulation for the video pin. Provides Video pin specific
metadata.
History:
created 5/28/2014
**************************************************************************/
#pragma once
class CVideoHardwareSimulation :
public CHardwareSimulation
{
public:
CVideoHardwareSimulation(
_Inout_ CSensor *Sensor,
_In_ LONG PinID
);
virtual ~CVideoHardwareSimulation();
//
// Emit metadata here for video pin.
//
void
EmitMetadata(
_Inout_ PKSSTREAM_HEADER pStreamHeader
);
private:
BOOLEAN m_Illuminated;
};
|