ffmpeg | branch: master | Andreas Rheinhardt <[email protected]> | Thu Sep 7 14:38:38 2023 +0200| [bdccb27ba41bbdc4cbef2476dfddc9a144258811] | committer: Andreas Rheinhardt
avfilter/vf_vif: Don't cast const away unnecessarily Reviewed-by: Paul B Mahol <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bdccb27ba41bbdc4cbef2476dfddc9a144258811 --- libavfilter/vf_vif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_vif.c b/libavfilter/vf_vif.c index 3c662491b2..a927abaf6f 100644 --- a/libavfilter/vf_vif.c +++ b/libavfilter/vf_vif.c @@ -301,8 +301,8 @@ static int compute_vif2(AVFilterContext *ctx, float *main_sq_filt = data_buf[11]; float *ref_main_filt = data_buf[12]; - float *curr_ref_scale = (float *)ref; - float *curr_main_scale = (float *)main; + const float *curr_ref_scale = ref; + const float *curr_main_scale = main; int curr_ref_stride = ref_stride; int curr_main_stride = main_stride; _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
