obs-qsv11: Add native obs-studio QSV encoder

This commit is contained in:
Seung-Woo Kim
2015-10-12 01:22:01 -07:00
committed by jp9000
parent d56dc4791d
commit 3e4bcf06bc
56 changed files with 13085 additions and 0 deletions

View 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;