コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RenderingVideoEventArgs" /> class.
 /// </summary>
 /// <param name="bitmap">The bitmap.</param>
 /// <param name="closedCaptions">The closed captions.</param>
 /// <param name="smtpeTimeCode">The smtpe time code.</param>
 /// <param name="pictureNumber">The picture number.</param>
 /// <param name="pictureType">The origination picture type.</param>
 /// <param name="engineState">The engine.</param>
 /// <param name="stream">The stream.</param>
 /// <param name="startTime">The start time.</param>
 /// <param name="duration">The duration.</param>
 /// <param name="clock">The clock.</param>
 internal RenderingVideoEventArgs(
     BitmapDataBuffer bitmap,
     IReadOnlyList <ClosedCaptionPacket> closedCaptions,
     string smtpeTimeCode,
     long pictureNumber,
     AVPictureType pictureType,
     IMediaEngineState engineState,
     StreamInfo stream,
     TimeSpan startTime,
     TimeSpan duration,
     TimeSpan clock)
     : base(engineState, stream, startTime, duration, clock)
 {
     PictureNumber  = pictureNumber;
     Bitmap         = bitmap;
     SmtpeTimeCode  = smtpeTimeCode;
     ClosedCaptions = closedCaptions;
     PictureType    = pictureType;
 }
コード例 #2
0
ファイル: avutil.cs プロジェクト: crazyender/FFMPEG.net
public static extern System.Char av_get_picture_type_char(
	AVPictureType pict_type);
コード例 #3
0
 public static extern sbyte av_get_picture_type_char(AVPictureType pict_type);
コード例 #4
0
 public static extern System.Char av_get_picture_type_char(
     AVPictureType pict_type);