mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
81d63948d1
Copied from oneVPL project (https://github.com/oneapi-src/oneVPL) v2022.0.3 tag at the commit of efc259f8b7ee5c334bca1a904a503186038bbbdd This is corresponding to MFX API version 2.6 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1408>
27 lines
620 B
C
27 lines
620 B
C
/*############################################################################
|
|
# Copyright Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
############################################################################*/
|
|
|
|
#ifndef __MFX_H__
|
|
#define __MFX_H__
|
|
|
|
#include "mfxdefs.h"
|
|
#include "mfxcommon.h"
|
|
#include "mfxstructures.h"
|
|
#include "mfxdispatcher.h"
|
|
#include "mfximplcaps.h"
|
|
#include "mfxsession.h"
|
|
#include "mfxvideo.h"
|
|
#include "mfxadapter.h"
|
|
|
|
#include "mfxbrc.h"
|
|
#include "mfxmvc.h"
|
|
#include "mfxpcp.h"
|
|
#include "mfxvp8.h"
|
|
#include "mfxjpeg.h"
|
|
|
|
#include "mfxsurfacepool.h"
|
|
|
|
#endif /* __MFXDEFS_H__ */
|