Ejemplo n.º 1
0
Archivo: vorbis.go Proyecto: grd/vorbis
func (p *Comment) Init() {
	C.vorbis_comment_init((*C.vorbis_comment)(p))
}
Ejemplo n.º 2
0
// 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)
}