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