예제 #1
0
파일: vorbis.go 프로젝트: grd/vorbis
func (p *Comment) Init() {
	C.vorbis_comment_init((*C.vorbis_comment)(p))
}
예제 #2
0
파일: vorbis.go 프로젝트: xlab/vorbis-go
// CommentInit function as declared in https://xiph.org/vorbis/doc/libvorbis/vorbis_comment_init.html
func CommentInit(vc *Comment) {
	cvc, _ := vc.PassRef()
	C.vorbis_comment_init(cvc)
}