ffmpeg | branch: master | Paul B Mahol <[email protected]> | Mon Sep 16 10:40:47 2019 +0200| [654601dd1d3b728f1d4e5cdb8f8368de2f600b16] | committer: Paul B Mahol
avfilter/vf_v360: add missing av_assert0() > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=654601dd1d3b728f1d4e5cdb8f8368de2f600b16 --- 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; _______________________________________________ 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".
