Imported Upstream version 0.14.2+dfsg1
This commit is contained in:
parent
fb3990e9e5
commit
41a01dbf05
529 changed files with 25112 additions and 2336 deletions
19
plugins/obs-qsv11/bits/linux_defs.h
Normal file
19
plugins/obs-qsv11/bits/linux_defs.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/*****************************************************************************
|
||||
|
||||
INTEL CORPORATION PROPRIETARY INFORMATION
|
||||
This software is supplied under the terms of a license agreement or
|
||||
nondisclosure agreement with Intel Corporation and may not be copied
|
||||
or disclosed except in accordance with the terms of that agreement.
|
||||
Copyright(c) 2005-2014 Intel Corporation. All Rights Reserved.
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#define MSDK_FOPEN(FH, FN, M) { FH=fopen(FN,M); }
|
||||
#define MSDK_SLEEP(X) { usleep(1000*(X)); }
|
||||
|
||||
typedef timespec mfxTime;
|
||||
16
plugins/obs-qsv11/bits/windows_defs.h
Normal file
16
plugins/obs-qsv11/bits/windows_defs.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/*****************************************************************************
|
||||
|
||||
INTEL CORPORATION PROPRIETARY INFORMATION
|
||||
This software is supplied under the terms of a license agreement or
|
||||
nondisclosure agreement with Intel Corporation and may not be copied
|
||||
or disclosed except in accordance with the terms of that agreement.
|
||||
Copyright(c) 2005-2014 Intel Corporation. All Rights Reserved.
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#define MSDK_FOPEN(FH, FN, M) { fopen_s(&FH, FN, M); }
|
||||
#define MSDK_SLEEP(X) { Sleep(X); }
|
||||
|
||||
typedef LARGE_INTEGER mfxTime;
|
||||
Loading…
Add table
Add a link
Reference in a new issue