From 654601dd1d3b728f1d4e5cdb8f8368de2f600b16 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 16 Sep 2019 10:40:47 +0200 Subject: [PATCH] avfilter/vf_v360: add missing av_assert0() --- libavfilter/vf_v360.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c index e74509e6f2..26024c1208 100644 --- a/libavfilter/vf_v360.c +++ b/libavfilter/vf_v360.c @@ -768,6 +768,8 @@ static void cube_to_xyz(const V360Context *s, l_y = -vf; l_z = 1.f; break; + default: + av_assert0(0); } vec[0] = l_x;