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