Merge ../ZoneMinder.Steve into packetqueue

This commit is contained in:
Isaac Connor 2016-09-08 09:40:05 -04:00
commit f67a58723c
1 changed files with 4 additions and 2 deletions

View File

@ -45,8 +45,10 @@ class FfmpegCamera : public Camera
AVFormatContext *mFormatContext; AVFormatContext *mFormatContext;
int mVideoStreamId; int mVideoStreamId;
int mAudioStreamId; int mAudioStreamId;
AVCodecContext *mCodecContext; AVCodecContext *mVideoCodecContext;
AVCodec *mCodec; AVCodecContext *mAudioCodecContext;
AVCodec *mVideoCodec;
AVCodec *mAudioCodec;
AVFrame *mRawFrame; AVFrame *mRawFrame;
AVFrame *mFrame; AVFrame *mFrame;
_AVPIXELFORMAT imagePixFormat; _AVPIXELFORMAT imagePixFormat;