summaryrefslogtreecommitdiff
path: root/synthesis.c
diff options
context:
space:
mode:
Diffstat (limited to 'synthesis.c')
-rw-r--r--synthesis.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/synthesis.c b/synthesis.c
index 962c730..1c08752 100644
--- a/synthesis.c
+++ b/synthesis.c
@@ -24,7 +24,7 @@
#include "misc.h"
#include "block.h"
-int vorbis_synthesis(vorbis_block *vb,ogg_packet *op,int decodep){
+static int _vorbis_synthesis1(vorbis_block *vb,ogg_packet *op,int decodep){
vorbis_dsp_state *vd=vb->vd;
private_state *b=(private_state *)vd->backend_state;
vorbis_info *vi=vd->vi;
@@ -82,6 +82,14 @@ int vorbis_synthesis(vorbis_block *vb,ogg_packet *op,int decodep){
}
}
+int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
+ return _vorbis_synthesis1(vb,op,1);
+}
+
+int vorbis_synthesis_trackonly(vorbis_block *vb,ogg_packet *op){
+ return _vorbis_synthesis1(vb,op,0);
+}
+
long vorbis_packet_blocksize(vorbis_info *vi,ogg_packet *op){
codec_setup_info *ci=(codec_setup_info *)vi->codec_setup;
oggpack_buffer opb;