|
FFmpeg
|
#include <string.h>#include <va/va.h>#include <va/va_vpp.h>#include "libavutil/avassert.h"#include "libavutil/common.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 37 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 611 of file vf_deinterlace_vaapi.c.
| #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM) |
Definition at line 612 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 74 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_build_filter_params().
|
static |
Definition at line 88 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 105 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_config_input(), deint_vaapi_config_output(), and deint_vaapi_uninit().
|
static |
Definition at line 135 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 154 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_config_output().
|
static |
Definition at line 235 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 363 of file vf_deinterlace_vaapi.c.
Referenced by deint_vaapi_filter_frame().
|
static |
Definition at line 377 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 587 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 599 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 613 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 641 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 648 of file vf_deinterlace_vaapi.c.
|
static |
Definition at line 658 of file vf_deinterlace_vaapi.c.
| AVFilter ff_vf_deinterlace_vaapi |
Definition at line 667 of file vf_deinterlace_vaapi.c.
1.8.6