コード例 #1
0
ファイル: context.go プロジェクト: gale320/goav
func (ctxt *Context) AvCodecGetSeekPreroll() int {
	return int(C.av_codec_get_seek_preroll((*C.struct_AVCodecContext)(ctxt)))
}
コード例 #2
0
ファイル: avcodec.go プロジェクト: stephenwithav/goav
//int 	av_codec_get_seek_preroll (const AVCodecContext *avctx)
func Av_codec_get_seek_preroll(ctxt *AVCodecContext) int {
	return int(C.av_codec_get_seek_preroll((*C.struct_AVCodecContext)(ctxt)))
}