コード例 #1
0
ファイル: ISMVideoTrack.cs プロジェクト: ctapang/GPUCyclops
        public ISMVideoTrack(ISMVTrackFormat videoFile, ISMVStream stream)
        {
            base.TrackFormat = videoFile; // sets payload type and other properties also
              ParentStream = stream;

              // set other properties of this track
        }
コード例 #2
0
ファイル: ISMAudioTrack.cs プロジェクト: ctapang/GPUCyclops
        public ISMAudioTrack(ISMVTrackFormat audioFile, ISMVStream stream)
        {
            base.TrackFormat = audioFile; // this sets the PayloadType and other properties also
              ParentStream = stream;

              // set other properties
        }
コード例 #3
0
        public ISMAudioTrack(ISMVTrackFormat audioFile, ISMVStream stream)
        {
            base.TrackFormat = audioFile; // this sets the PayloadType and other properties also
            ParentStream     = stream;

            // set other properties
        }
コード例 #4
0
        public ISMVideoTrack(ISMVTrackFormat videoFile, ISMVStream stream)
        {
            base.TrackFormat = videoFile; // sets payload type and other properties also
            ParentStream     = stream;

            // set other properties of this track
        }