diff options
author | Philip Langdale <philipl@overt.org> | 2018-11-02 14:08:18 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2018-11-03 15:50:31 -0700 |
commit | ebc1c49e417cf7d7096d7a038d1e3e61f0432f19 (patch) | |
tree | 19a5bcc6713b8e3daeb0a6a27df8ea253977678e | |
parent | 6feec11e489b729a0ed7ead205e2aca6837d5f20 (diff) | |
download | ffmpeg-ebc1c49e417cf7d7096d7a038d1e3e61f0432f19.tar.gz |
avfilter/vf_cuda_yadif: Avoid new syntax for vector initialisation
This requires a newer version of CUDA than we want to require.
(cherry picked from commit 8e50215b5e02074b0773dfcf55867654ee59c179)
-rw-r--r-- | libavfilter/vf_yadif_cuda.cu | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/libavfilter/vf_yadif_cuda.cu b/libavfilter/vf_yadif_cuda.cu index 65a902c66b..12e7e4a443 100644 --- a/libavfilter/vf_yadif_cuda.cu +++ b/libavfilter/vf_yadif_cuda.cu @@ -201,9 +201,11 @@ __inline__ __device__ void yadif_double(T *dst, T m = tex2D<T>(cur, xo + 2, yo + 1); T n = tex2D<T>(cur, xo + 3, yo + 1); - T spatial_pred = { - spatial_predictor(a.x, b.x, c.x, d.x, e.x, f.x, g.x, h.x, i.x, j.x, k.x, l.x, m.x, n.x), - spatial_predictor(a.y, b.y, c.y, d.y, e.y, f.y, g.y, h.y, i.y, j.y, k.y, l.y, m.y, n.y) }; + T spatial_pred; + spatial_pred.x = + spatial_predictor(a.x, b.x, c.x, d.x, e.x, f.x, g.x, h.x, i.x, j.x, k.x, l.x, m.x, n.x); + spatial_pred.y = + spatial_predictor(a.y, b.y, c.y, d.y, e.y, f.y, g.y, h.y, i.y, j.y, k.y, l.y, m.y, n.y); // Calculate temporal prediction int is_second_field = !(parity ^ tff); @@ -226,11 +228,12 @@ __inline__ __device__ void yadif_double(T *dst, T K = tex2D<T>(next2, xo, yo - 1); T L = tex2D<T>(next2, xo, yo + 1); - spatial_pred = { + spatial_pred.x = temporal_predictor(A.x, B.x, C.x, D.x, E.x, F.x, G.x, H.x, I.x, J.x, K.x, L.x, - spatial_pred.x, skip_spatial_check), + spatial_pred.x, skip_spatial_check); + spatial_pred.y = temporal_predictor(A.y, B.y, C.y, D.y, E.y, F.y, G.y, H.y, I.y, J.y, K.y, L.y, - spatial_pred.y, skip_spatial_check) }; + spatial_pred.y, skip_spatial_check); dst[yo*dst_pitch+xo] = spatial_pred; } |