Пример #1
0
            public FrameList(EventHandler handler, Stream s, uint numberFrames, S3Channel parentChannel)
                : base(handler)
            {
                this.parentChannel = parentChannel;
                uint width = GetWidthForChannelType(parentChannel.Channel_Type);
                uint count = GetCountForChannelType(parentChannel.Channel_Type);

                this.Parse(s, numberFrames, width, count);
            }
Пример #2
0
 public FrameList(EventHandler handler, S3Channel parentChannel)
     : base(handler)
 {
     this.parentChannel = parentChannel;
 }