FFmpeg
hwcontext_amf.h
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 
20 #ifndef AVUTIL_HWCONTEXT_AMF_H
21 #define AVUTIL_HWCONTEXT_AMF_H
22 
23 #include "pixfmt.h"
24 #include "hwcontext.h"
25 #include <AMF/core/Factory.h>
26 #include <AMF/core/Context.h>
27 #include <AMF/core/Trace.h>
28 #include <AMF/core/Debug.h>
29 
30 /**
31  * This struct is allocated as AVHWDeviceContext.hwctx
32  */
33 typedef struct AVAMFDeviceContext {
34  void * library;
35  AMFFactory *factory;
36  void *trace_writer;
37 
38  int64_t version; ///< version of AMF runtime
39  AMFContext *context;
41 
42 enum AMF_SURFACE_FORMAT av_av_to_amf_format(enum AVPixelFormat fmt);
43 enum AVPixelFormat av_amf_to_av_format(enum AMF_SURFACE_FORMAT fmt);
44 
45 #endif /* AVUTIL_HWCONTEXT_AMF_H */
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
int64_t
long long int64_t
Definition: coverity.c:34
AVAMFDeviceContext::context
AMFContext * context
Definition: hwcontext_amf.h:39
AVAMFDeviceContext::version
int64_t version
version of AMF runtime
Definition: hwcontext_amf.h:38
AVAMFDeviceContext::trace_writer
void * trace_writer
Definition: hwcontext_amf.h:36
av_av_to_amf_format
enum AMF_SURFACE_FORMAT av_av_to_amf_format(enum AVPixelFormat fmt)
Definition: hwcontext_amf.c:116
AVAMFDeviceContext::library
void * library
Definition: hwcontext_amf.h:34
AVAMFDeviceContext
This struct is allocated as AVHWDeviceContext.hwctx.
Definition: hwcontext_amf.h:33
AVAMFDeviceContext::factory
AMFFactory * factory
Definition: hwcontext_amf.h:35
pixfmt.h
av_amf_to_av_format
enum AVPixelFormat av_amf_to_av_format(enum AMF_SURFACE_FORMAT fmt)
Definition: hwcontext_amf.c:127
hwcontext.h