123456789101112131415 |
- using Vinno.FIS.TRTCClient.Common.Enum;
- namespace Vinno.FIS.TRTCClient.ImageSender
- {
- internal class Camera960X540SenderV2 : CameraImageSenderV2
- {
- public Camera960X540SenderV2(string id, int width, int height, EnumLiveChannelCategory liveChannelCategory, bool isFillMode, int deviceWidth, int deviceHeight) : base(id, width, height, liveChannelCategory, isFillMode, deviceWidth, deviceHeight)
- {
- SendImageWidth = 960;
- SendImageHeight = 544;
- PushFrameBuffer = new byte[SendImageWidth * SendImageHeight * ChannelNumer];
- TotalLineLength = SendImageWidth * ChannelNumer;
- }
- }
- }
|