I have this example of getting the initial header information from Vorbis for Ogg Stream:
ogg_packet header;
ogg_packet header_comm;
ogg_packet header_code;
vorbis_analysis_headerout(&vd,&vc,&header,&header_comm,&header_code);
How can I get this header information from Opus with libopus? There's some information HERE, but I can't figure out how work with it.