mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
2b3f690355
See release note https://github.com/oneapi-src/oneVPL/releases/tag/v2022.2.0 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2738>
31 lines
683 B
C
31 lines
683 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"
|
|
|
|
#ifdef ONEVPL_EXPERIMENTAL
|
|
#include "mfxencodestats.h"
|
|
#endif
|
|
|
|
#endif /* __MFXDEFS_H__ */
|