summaryrefslogtreecommitdiff
path: root/ivorbiscodec.h
diff options
context:
space:
mode:
authorTim Terriberry <tterribe@xiph.org>2010-08-31 18:51:40 +0000
committerTim Terriberry <tterribe@xiph.org>2010-08-31 18:51:40 +0000
commit7125eb6381e57436db1c5a2d7c4e52091c37e95c (patch)
tree69cac8f2ae0282587205c4044794b19be8ca1e30 /ivorbiscodec.h
parent4ec59aa611e2d4093428c66d01dbbf2535c6cca5 (diff)
downloadtremor-7125eb6381e57436db1c5a2d7c4e52091c37e95c.tar.gz
Remove the extra argument from vorbis_synthesis().
Add vorbis_synthesis_trackonly() instead, so that this part of the API works like mainline libvorbis now. git-svn-id: https://svn.xiph.org/trunk/Tremor@17374 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'ivorbiscodec.h')
-rw-r--r--ivorbiscodec.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ivorbiscodec.h b/ivorbiscodec.h
index 40a9c47..25e6509 100644
--- a/ivorbiscodec.h
+++ b/ivorbiscodec.h
@@ -171,7 +171,8 @@ extern int vorbis_synthesis_headerin(vorbis_info *vi,vorbis_comment *vc,
extern int vorbis_synthesis_init(vorbis_dsp_state *v,vorbis_info *vi);
extern int vorbis_synthesis_restart(vorbis_dsp_state *v);
-extern int vorbis_synthesis(vorbis_block *vb,ogg_packet *op,int decodep);
+extern int vorbis_synthesis(vorbis_block *vb,ogg_packet *op);
+extern int vorbis_synthesis_trackonly(vorbis_block *vb,ogg_packet *op);
extern int vorbis_synthesis_blockin(vorbis_dsp_state *v,vorbis_block *vb);
extern int vorbis_synthesis_pcmout(vorbis_dsp_state *v,ogg_int32_t ***pcm);
extern int vorbis_synthesis_read(vorbis_dsp_state *v,int samples);