]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/vf_xxx_vaapi: fix typo.
authorJun Zhao <jun.zhao@intel.com>
Wed, 24 Jan 2018 00:40:59 +0000 (08:40 +0800)
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>
Wed, 24 Jan 2018 10:31:14 +0000 (11:31 +0100)
Signed-off-by: Jun Zhao <jun.zhao@intel.com>
libavfilter/vf_deinterlace_vaapi.c
libavfilter/vf_misc_vaapi.c
libavfilter/vf_procamp_vaapi.c
libavfilter/vf_scale_vaapi.c

index 9700f85817d48bf610c6812c28f132af197a66a6..f7a262d0c6be1a4881e09a17ef4bcc6cf43c9328 100644 (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;
index 316f15e38b545e9daa6b260db04c5e265afe54c0..c60b7b0c485536cbaab2f7db560cca649b4e5caf 100644 (file)
 #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;
index 10f9a6ba0c6e0dfde37934316a5b1bdaab96e154..aad76aa37106f6eb3debecac23ba02a27e68226e 100644 (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;
index d349ff0f900cdf5fc499a67e0f9e33704e5f1124..c19e23ccd020156e73e8a66ff5f83f8f5f269125 100644 (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;