From 2ab28be18bd8089862591125cf665ec9a9df602e Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 3 Mar 2009 10:54:21 -0800 Subject: [PATCH] Define place-holder class when gstreamer is disabled --- src/stream.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/stream.cpp b/src/stream.cpp index 41c90a9..8c0f6aa 100644 --- a/src/stream.cpp +++ b/src/stream.cpp @@ -1229,6 +1229,11 @@ private: return (app->fstream->seekg(position) ? TRUE : FALSE); } }; +#else +struct gstStream : public nullStream { + gstStream(const char*){} + gstStream(const MemDataInfo&){} +}; #endif -- 2.11.4.GIT