From 612e326917e6569dee4982c9d03f740d4c33844b Mon Sep 17 00:00:00 2001 From: SteveGilvarry Date: Fri, 16 Oct 2015 23:32:54 +1100 Subject: [PATCH] Fixes for remote h264 passthrough --- src/zm_camera.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_camera.h b/src/zm_camera.h index 5d54919f1..9f901e17f 100755 --- a/src/zm_camera.h +++ b/src/zm_camera.h @@ -74,7 +74,7 @@ public: bool CanCapture() const { return( capture ); } - bool SupportsNativeVideo() const { return( type == FFMPEG_SRC ); } + bool SupportsNativeVideo() const { return( (type == FFMPEG_SRC )||(type == REMOTE_SRC)); } virtual int PrimeCapture() { return( 0 ); } virtual int PreCapture()=0;