Example #1
0
 public VideoStreamFormat(VideoStreamType streamType, int width, int height, int arX, int arY, int bitrate,
                          bool isInterlaced)
 {
     IsValid           = true;
     this.streamType   = streamType;
     this.width        = width;
     this.height       = height;
     this.arX          = arX;
     this.arY          = arY;
     this.bitrate      = bitrate;
     this.isInterlaced = isInterlaced;
 }
Example #2
0
 public VideoStreamFormat(VideoStreamType streamType, int width, int height, int arX, int arY, int bitrate,
                          bool isInterlaced)
 {
   IsValid = true;
   this.streamType = streamType;
   this.width = width;
   this.height = height;
   this.arX = arX;
   this.arY = arY;
   this.bitrate = bitrate;
   this.isInterlaced = isInterlaced;
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VideoStream"/> class.
 /// </summary>
 public VideoStream()
 {
   _streamType = VideoStreamType.MPEG2;
   _videoPid = -1;
   _pcrPid = -1;
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VideoStream"/> class.
 /// </summary>
 public VideoStream()
 {
     _streamType = VideoStreamType.MPEG2;
     _videoPid   = -1;
     _pcrPid     = -1;
 }