Displaying 1 result from an estimated 1 matches for "460,466".
2008 Sep 12
4
[Patch] New function of libvorbis
...log2(unsigned int v){
int ret=0;
***************
*** 457,464 ****
}
static int _vorbis_pack_comment(oggpack_buffer *opb,vorbis_comment *vc){
! char temp[]="Xiph.Org libVorbis I 20080501";
! int bytes = strlen(temp);
/* preamble */
oggpack_write(opb,0x03,8);
--- 460,466 ----
}
static int _vorbis_pack_comment(oggpack_buffer *opb,vorbis_comment *vc){
! int bytes = strlen(ENCODE_VENDOR_STRING);
/* preamble */
oggpack_write(opb,0x03,8);
***************
*** 466,472 ****
/* vendor */
oggpack_write(opb,bytes,32);
! _v_writestring(op...