Example #1
0
 public static extern void avcodec_get_frame_defaults(ref AVFrame pAVFrame);
Example #2
0
 public static extern int avcodec_encode_video(ref AVCodecContext pAVCodecContext, [In, Out]byte[] buf, int buf_size,
     ref AVFrame pAVFrame);
Example #3
0
 public static extern void avcodec_default_release_buffer(ref AVCodecContext pAVCodecContext, ref AVFrame pAVFrame);
Example #4
0
 public static extern int avcodec_default_get_buffer(ref AVCodecContext pAVCodecContext, ref AVFrame pAVFrame);
Example #5
0
 public static extern int avcodec_decode_video2(ref AVCodecContext pAVCodecContext, AVFrame* pAVFrame,
     [MarshalAs(UnmanagedType.Bool)]out bool got_picture_ptr,
     ref AVPacket packet);
Example #6
0
 public static extern int avcodec_decode_video(ref AVCodecContext pAVCodecContext, AVFrame* pAVFrame,
                                               [MarshalAs(UnmanagedType.Bool)]out bool got_picture_ptr,
                                               byte* buf, int buf_size);