Lines Matching defs:ident
73 vorbiscomment_read_tags (SF_PRIVATE *psf, ogg_packet *packet, vorbiscomment_ident *ident)
81 ** The smallest possible header is the ident string length plus two 4-byte
84 if (packet->bytes < (ident ? ident->length : 0) + 4 + 4)
92 if (ident)
93 { if (memcmp (p, ident->ident, ident->length) != 0)
97 p += ident->length ;
181 vorbiscomment_write_tags (SF_PRIVATE *psf, ogg_packet *packet, vorbiscomment_ident *ident, const char *vendor, int targetsize)
191 if (ident)
192 psf_binheader_writef (psf, "eb", BHWv (ident->ident), BHWz (ident->length)) ;