Example #1
0
File: vorbis.go Project: grd/vorbis
func (p *Comment) Clear() {
	C.vorbis_comment_clear((*C.vorbis_comment)(p))
}
Example #2
0
// CommentClear function as declared in https://xiph.org/vorbis/doc/libvorbis/vorbis_comment_clear.html
func CommentClear(vc *Comment) {
	cvc, _ := vc.PassRef()
	C.vorbis_comment_clear(cvc)
}