From 34a85ba3f106440e5c3e0862f98c2b3ac698aacc Mon Sep 17 00:00:00 2001 From: Steve Gilvarry Date: Thu, 8 Sep 2016 23:39:04 +1000 Subject: [PATCH] Moron forgot a file --- src/zm_ffmpeg_camera.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/zm_ffmpeg_camera.h b/src/zm_ffmpeg_camera.h index 32e6a848b..775561f0e 100644 --- a/src/zm_ffmpeg_camera.h +++ b/src/zm_ffmpeg_camera.h @@ -45,8 +45,10 @@ class FfmpegCamera : public Camera AVFormatContext *mFormatContext; int mVideoStreamId; int mAudioStreamId; - AVCodecContext *mCodecContext; - AVCodec *mCodec; + AVCodecContext *mVideoCodecContext; + AVCodecContext *mAudioCodecContext; + AVCodec *mVideoCodec; + AVCodec *mAudioCodec; AVFrame *mRawFrame; AVFrame *mFrame; _AVPIXELFORMAT imagePixFormat;