FFmpeg
|
#include <string.h>
#include <va/va.h>
#include <va/va_vpp.h>
#include "libavutil/avassert.h"
#include "libavutil/hwcontext.h"
#include "libavutil/hwcontext_vaapi.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | DeintVAAPIContext |
Macros | |
#define | MAX_REFERENCES 8 |
#define | D(name) case VAProcDeinterlacing ## name: return #name |
#define | CS(av, va) case AVCOL_SPC_ ## av: return VAProcColorStandard ## va; |
#define | OFFSET(x) offsetof(DeintVAAPIContext, x) |
#define | FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM) |
Functions | |
static const char * | deint_vaapi_mode_name (int mode) |
static int | deint_vaapi_query_formats (AVFilterContext *avctx) |
static int | deint_vaapi_pipeline_uninit (AVFilterContext *avctx) |
static int | deint_vaapi_config_input (AVFilterLink *inlink) |
static int | deint_vaapi_build_filter_params (AVFilterContext *avctx) |
static int | deint_vaapi_config_output (AVFilterLink *outlink) |
static int | vaapi_proc_colour_standard (enum AVColorSpace av_cs) |
static int | deint_vaapi_filter_frame (AVFilterLink *inlink, AVFrame *input_frame) |
static av_cold int | deint_vaapi_init (AVFilterContext *avctx) |
static av_cold void | deint_vaapi_uninit (AVFilterContext *avctx) |
Variables | |
static const AVOption | deint_vaapi_options [] |
static const AVClass | deint_vaapi_class |
static const AVFilterPad | deint_vaapi_inputs [] |
static const AVFilterPad | deint_vaapi_outputs [] |
AVFilter | ff_vf_deinterlace_vaapi |
#define MAX_REFERENCES 8 |
Definition at line 36 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_build_filter_params(), and deint_vaapi_filter_frame().
Referenced by deint_vaapi_mode_name().
#define CS | ( | av, | |
va | |||
) | case AVCOL_SPC_ ## av: return VAProcColorStandard ## va; |
Referenced by vaapi_proc_colour_standard().
#define OFFSET | ( | x | ) | offsetof(DeintVAAPIContext, x) |
Definition at line 579 of file vf_deinterlace_vaapi.c.
#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM) |
Definition at line 580 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 70 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_build_filter_params().
|
static |
Definition at line 84 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 101 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_config_input(), deint_vaapi_config_output(), and deint_vaapi_uninit().
|
static |
Definition at line 131 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 150 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_config_output().
|
static |
Definition at line 227 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 349 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_filter_frame().
|
static |
Definition at line 363 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 555 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 567 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 581 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 598 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 605 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 615 of file vf_deinterlace_vaapi.c.
AVFilter ff_vf_deinterlace_vaapi |
Definition at line 624 of file vf_deinterlace_vaapi.c.