[cvs-annodex] commit (/annodex):
libfishsound/branches/1.0-stable/src/libfishsound/vorbis.c
conrad
nobody at lists.annodex.net
Mon Jul 18 22:45:10 EST 2005
Update of /annodex (new revision 1398)
Modified files:
libfishsound/branches/1.0-stable/src/libfishsound/vorbis.c
Log Message:
libfishsound-1.0-stable: use correct libvorbis types in vorbis.c
+ removes 'use of uninitialized variable' reports by valgrind
Modified: libfishsound/branches/1.0-stable/src/libfishsound/vorbis.c
===================================================================
--- libfishsound/branches/1.0-stable/src/libfishsound/vorbis.c 2005-07-18 11:45:19 UTC (rev 1397)
+++ libfishsound/branches/1.0-stable/src/libfishsound/vorbis.c 2005-07-18 12:45:09 UTC (rev 1398)
@@ -50,8 +50,8 @@
typedef struct _FishSoundVorbisInfo {
int packetno;
- struct vorbis_info vi;
- struct vorbis_comment vc;
+ vorbis_info vi;
+ vorbis_comment vc;
vorbis_dsp_state vd; /** central working state for the PCM->packet encoder */
vorbis_block vb; /** local working space for PCM->packet encode */
float * ipcm;
--
conrad
More information about the cvs-annodex
mailing list