Browse Source

lavfi/vf_xxx_vaapi: fix typo.

Signed-off-by: Jun Zhao <jun.zhao@intel.com>
tags/n4.0
Jun Zhao Carl Eugen Hoyos 8 years ago
parent
commit
4dbae00bac
4 changed files with 5 additions and 5 deletions
  1. +1
    -1
      libavfilter/vf_deinterlace_vaapi.c
  2. +2
    -2
      libavfilter/vf_misc_vaapi.c
  3. +1
    -1
      libavfilter/vf_procamp_vaapi.c
  4. +1
    -1
      libavfilter/vf_scale_vaapi.c

+ 1
- 1
libavfilter/vf_deinterlace_vaapi.c View File

@@ -33,7 +33,7 @@
#define MAX_REFERENCES 8

typedef struct DeintVAAPIContext {
VAAPIVPPContext vpp_ctx; // must be the first fileld
VAAPIVPPContext vpp_ctx; // must be the first field

int mode;
int field_rate;


+ 2
- 2
libavfilter/vf_misc_vaapi.c View File

@@ -38,13 +38,13 @@
#define SHARPNESS_DEFAULT 44

typedef struct DenoiseVAAPIContext {
VAAPIVPPContext vpp_ctx; // must be the first fileld
VAAPIVPPContext vpp_ctx; // must be the first field

int denoise; // enable denoise algo.
} DenoiseVAAPIContext;

typedef struct SharpnessVAAPIContext {
VAAPIVPPContext vpp_ctx; // must be the first fileld
VAAPIVPPContext vpp_ctx; // must be the first field

int sharpness; // enable sharpness.
} SharpnessVAAPIContext;


+ 1
- 1
libavfilter/vf_procamp_vaapi.c View File

@@ -47,7 +47,7 @@
#define EPSILON 0.00001F

typedef struct ProcampVAAPIContext {
VAAPIVPPContext vpp_ctx; // must be the first fileld
VAAPIVPPContext vpp_ctx; // must be the first field

float bright;
float hue;


+ 1
- 1
libavfilter/vf_scale_vaapi.c View File

@@ -31,7 +31,7 @@
#include "vaapi_vpp.h"

typedef struct ScaleVAAPIContext {
VAAPIVPPContext vpp_ctx; // must be the first fileld
VAAPIVPPContext vpp_ctx; // must be the first field

char *output_format_string;



Loading…
Cancel
Save