SDK API diff 7.2.0

Documenting the differences between SDK Release 7.1.0 and 7.2.0.

This release of the EdgeVis Decoder SDK introduces configurable video frame output. This allows video frames to be provided in the original YCbCr format, or optionally convert the frames to JPEG, RGB or H.264 before being provided to the application.

There are also options to scale the frames to a specified size and provide frame at a rate lower than the native EdgeVis decode rate.

All integer types have been standardised as stdint types.

SDK 7.2.0 API diff

New classes

New video frame config classes

FrameConfig.h

JPEGFrameConfig.h

H264FrameConfig.h

RGBFrameConfig.h

YCbCrFrameConfig.h

New video frame classes

VideoData.h

H264Frame.h

H264FrameTypes.h

Updated classes

EdgeVisDecoderSDKTypes.h

file removed

EncodersList

typedef removed - use std::vector<Encoder> instead.

IndicesList

typedef removed - use std::vector<int64_t> instead.

MediaStream.h

// Get and set the video frame format generated by the media stream
FrameConfig GetVideoFrameConfig();
bool SetVideoFrameConfig(FrameConfig config);

JPEGFrame.h

Now extends new VideoData class

RGBFrame.h

Now extends new VideoData class

YCbCrFrame.h

Now extends new VideoData class

PTZStream.h

//New PTZ Move command.
DB_EDGEVIS_SDK OpResult Move(int8_t horizontal, int8_t vertical, int8_t zoom);