Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun Zhao <barryjzhao@tencent.com>2019-04-21 07:37:29 +0300
committerJun Zhao <barryjzhao@tencent.com>2019-04-21 16:20:16 +0300
commitb272d5b9b6e189cb855ad393edf8524066bd0d07 (patch)
treef99b5219c4421316d0be569dcf3dfc4ec038d06b /libavfilter/vf_frei0r.c
parent6e0488cac43130124e17722c589f1b5c9f4fe3f6 (diff)
lavfi/frei0r: Fixes the compilation warnings
Fixes the compilation warnings Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
Diffstat (limited to 'libavfilter/vf_frei0r.c')
-rw-r--r--libavfilter/vf_frei0r.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_frei0r.c b/libavfilter/vf_frei0r.c
index c775ed1d99..165fbd7d81 100644
--- a/libavfilter/vf_frei0r.c
+++ b/libavfilter/vf_frei0r.c
@@ -127,7 +127,7 @@ static int set_param(AVFilterContext *ctx, f0r_param_info_t info, int index, cha
break;
case F0R_PARAM_STRING:
- val.str = param;
+ val.str = (f0r_param_string *)param;
break;
}