FFmpeg 9.0
Loading...
Searching...
No Matches
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#include <AMF/components/ColorSpace.h>
31
32/**
33 * This struct is allocated as AVHWDeviceContext.hwctx
34 */
35typedef struct AVAMFDeviceContext {
36 void * library;
37 AMFFactory *factory;
39
40 int64_t version; ///< version of AMF runtime
41 AMFContext *context;
42 AMF_MEMORY_TYPE memory_type;
43
44 void (*lock)(void *lock_ctx);
45 void (*unlock)(void *lock_ctx);
46 void *lock_ctx;
48
49enum AMF_SURFACE_FORMAT av_av_to_amf_format(enum AVPixelFormat fmt);
50enum AVPixelFormat av_amf_to_av_format(enum AMF_SURFACE_FORMAT fmt);
51
52enum AMF_VIDEO_CONVERTER_COLOR_PROFILE_ENUM av_amf_get_color_profile(enum AVColorRange color_range, enum AVColorSpace color_space);
53int av_amf_display_mastering_meta_to_hdrmeta(const AVMasteringDisplayMetadata *display_meta, AMFHDRMetadata *hdrmeta);
54int av_amf_light_metadata_to_hdrmeta(const AVContentLightMetadata *light_meta, AMFHDRMetadata *hdrmeta);
55int av_amf_extract_hdr_metadata(const AVFrame *frame, AMFHDRMetadata *hdrmeta);
56int av_amf_attach_hdr_metadata(AVFrame *frame, const AMFHDRMetadata *hdrmeta);
57
58#endif /* AVUTIL_HWCONTEXT_AMF_H */
static AVFrame * frame
int av_amf_display_mastering_meta_to_hdrmeta(const AVMasteringDisplayMetadata *display_meta, AMFHDRMetadata *hdrmeta)
int av_amf_attach_hdr_metadata(AVFrame *frame, const AMFHDRMetadata *hdrmeta)
int av_amf_light_metadata_to_hdrmeta(const AVContentLightMetadata *light_meta, AMFHDRMetadata *hdrmeta)
enum AMF_SURFACE_FORMAT av_av_to_amf_format(enum AVPixelFormat fmt)
int av_amf_extract_hdr_metadata(const AVFrame *frame, AMFHDRMetadata *hdrmeta)
enum AVPixelFormat av_amf_to_av_format(enum AMF_SURFACE_FORMAT fmt)
enum AMF_VIDEO_CONVERTER_COLOR_PROFILE_ENUM av_amf_get_color_profile(enum AVColorRange color_range, enum AVColorSpace color_space)
pixel format definitions
AVColorRange
Visual content value range.
Definition pixfmt.h:742
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
AVColorSpace
YUV colorspace type.
Definition pixfmt.h:700
This struct is allocated as AVHWDeviceContext.hwctx.
void(* lock)(void *lock_ctx)
AMFContext * context
AMF_MEMORY_TYPE memory_type
void(* unlock)(void *lock_ctx)
AMFFactory * factory
int64_t version
version of AMF runtime
Content light level needed by to transmit HDR over HDMI (CTA-861.3).
This structure describes decoded (raw) audio or video data.
Definition frame.h:466
Mastering display metadata capable of representing the color volume of the display used to master the...