|
FFmpeg
|
#include <stdint.h>#include <sys/types.h>#include <mfx/mfxvideo.h>#include "libavutil/common.h"#include "libavutil/opt.h"#include "avcodec.h"#include "bytestream.h"#include "get_bits.h"#include "hevc.h"#include "internal.h"#include "qsv.h"#include "qsv_internal.h"#include "qsvenc.h"Go to the source code of this file.
Data Structures | |
| struct | QSVHEVCEncContext |
Macros | |
| #define | OFFSET(x) offsetof(QSVHEVCEncContext, x) |
| #define | VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM |
Enumerations | |
| enum | LoadPlugin { LOAD_PLUGIN_NONE, LOAD_PLUGIN_HEVC_SW, LOAD_PLUGIN_NONE, LOAD_PLUGIN_HEVC_SW, LOAD_PLUGIN_HEVC_HW } |
Functions | |
| static int | generate_fake_vps (QSVEncContext *q, AVCodecContext *avctx) |
| static av_cold int | qsv_enc_init (AVCodecContext *avctx) |
| static int | qsv_enc_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) |
| static av_cold int | qsv_enc_close (AVCodecContext *avctx) |
Variables | |
| static const AVOption | options [] |
| class { | |
| class_name = "hevc_qsv encoder" | |
| item_name = av_default_item_name | |
| option = options | |
| version = LIBAVUTIL_VERSION_INT | |
| }; | |
| static const AVCodecDefault | qsv_enc_defaults [] |
| AVCodec | ff_hevc_qsv_encoder |
| #define OFFSET | ( | x | ) | offsetof(QSVHEVCEncContext, x) |
Definition at line 210 of file qsvenc_hevc.c.
| #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM |
Definition at line 211 of file qsvenc_hevc.c.
| enum LoadPlugin |
| Enumerator | |
|---|---|
| LOAD_PLUGIN_NONE | |
| LOAD_PLUGIN_HEVC_SW | |
| LOAD_PLUGIN_NONE | |
| LOAD_PLUGIN_HEVC_SW | |
| LOAD_PLUGIN_HEVC_HW | |
Definition at line 39 of file qsvenc_hevc.c.
|
static |
Definition at line 51 of file qsvenc_hevc.c.
Referenced by qsv_enc_init().
|
static |
Definition at line 156 of file qsvenc_hevc.c.
|
static |
Definition at line 195 of file qsvenc_hevc.c.
|
static |
Definition at line 203 of file qsvenc_hevc.c.
|
static |
Definition at line 212 of file qsvenc_hevc.c.
| class_name = "hevc_qsv encoder" |
Definition at line 240 of file qsvenc_hevc.c.
| item_name = av_default_item_name |
Definition at line 241 of file qsvenc_hevc.c.
| option = options |
Definition at line 242 of file qsvenc_hevc.c.
| version = LIBAVUTIL_VERSION_INT |
Definition at line 243 of file qsvenc_hevc.c.
| const { ... } |
|
static |
Definition at line 246 of file qsvenc_hevc.c.
| AVCodec ff_hevc_qsv_encoder |
Definition at line 257 of file qsvenc_hevc.c.
1.8.6