Displaying 1 result from an estimated 1 matches for "encode_vendor_string".
2008 Sep 12
4
[Patch] New function of libvorbis
...bis-1.2.1RC2/lib/info.c Thu Sep 04 23:38:42 2008
--- libvorbis-1.2.1RC2_NI/lib/info.c Sat Sep 13 05:20:28 2008
***************
*** 31,36 ****
--- 31,39 ----
#include "misc.h"
#include "os.h"
+ #define GENERAL_VENDOR_STRING "Xiph.Org libVorbis 1.2.1RC2"
+ #define ENCODE_VENDOR_STRING "Xiph.Org libVorbis I 20080501"
+
/* helpers */
static int ilog2(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...