From a507dd0c515b39111c62f3d7ff701ed360a0a0bb Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Tue, 29 May 2018 17:44:25 +1000 Subject: [PATCH] [client] remove h264 decoder for now --- client/lg-decoders.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/lg-decoders.h b/client/lg-decoders.h index d33fe89f..7835c361 100644 --- a/client/lg-decoders.h +++ b/client/lg-decoders.h @@ -20,13 +20,11 @@ Place, Suite 330, Boston, MA 02111-1307 USA #pragma once #include "lg-decoder.h" -extern const LG_Decoder LGD_H264; extern const LG_Decoder LGD_NULL; const LG_Decoder * LG_Decoders[] = { &LGD_NULL, - &LGD_H264, NULL // end of array sentinal };