From: Monty Date: Wed, 28 Jul 1999 22:56:57 +0000 (+0000) Subject: Move some abstraction around X-Git-Tag: v1.3.3~1381 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad038bbeb44d7c737d3e67bbe355ea557adafa82;p=platform%2Fupstream%2Flibvorbis.git Move some abstraction around svn path=/trunk/vorbis/; revision=16 --- diff --git a/lib/analysis.c b/lib/analysis.c new file mode 100644 index 0000000..4bb6bc6 --- /dev/null +++ b/lib/analysis.c @@ -0,0 +1,18 @@ +analysis_packetout(vorbis_dsp_state *v, vorbis_block *vb, + ogg_packet *op){ + + /* find block's envelope vector and apply it */ + + + /* the real analysis begins; forward MDCT with window */ + + + /* Noise floor, resolution floor */ + + /* encode the floor into LSP; get the actual floor back for quant */ + + /* use noise floor, res floor for culling, actual floor for quant */ + + /* encode residue */ + +}