func SynthesisIdHeader(op *ogg.Packet) int { cp := fromPacket(op) ret := int(C.vorbis_synthesis_idheader(cp)) toPacket(op, cp) return ret }
// SynthesisIdheader function as declared in https://xiph.org/vorbis/doc/libvorbis/vorbis_synthesis_idheader.html func SynthesisIdheader(op *OggPacket) int32 { cop, _ := op.PassRef() __ret := C.vorbis_synthesis_idheader(cop) __v := (int32)(__ret) return __v }