From 43c8b9fdb6098e178926f96ce9e36618f3d36934 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 15 Apr 2020 22:20:34 -0400 Subject: [PATCH] ncpp: drop USE_FFMPEG guards #488 --- include/ncpp/Plane.hh | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/ncpp/Plane.hh b/include/ncpp/Plane.hh index 0135b961b..ea2f525fc 100644 --- a/include/ncpp/Plane.hh +++ b/include/ncpp/Plane.hh @@ -991,7 +991,6 @@ namespace ncpp static Plane* map_plane (ncplane *ncp, Plane *associated_plane = nullptr) noexcept; -#ifdef USE_FFMPEG bool blit_bgrx (int placey, int placex, int linesize, const void* data, int begy, int begx, int leny, int lenx) const NOEXCEPT_MAYBE { bool ret = ncblit_bgrx (plane, placey, placex, linesize, data, begy, begx, leny, lenx) < 0; @@ -1003,7 +1002,6 @@ namespace ncpp bool ret = ncblit_rgba (plane, placey, placex, linesize, data, begy, begx, leny, lenx) < 0; return error_guard_cond (ret, ret); } -#endif protected: explicit Plane (ncplane *_plane, bool _is_stdplane)