Package org.vorbis.jcraft.jogg

Examples of org.vorbis.jcraft.jogg.StreamState


    /**
     * Initializes all the jOrbis and jOgg vars that are used for song playback.
     */
    private void init_jorbis() {
        oggSyncState_ = new SyncState();
        oggStreamState_ = new StreamState();
        oggPage_ = new Page();
        oggPacket_ = new Packet();
        vorbisInfo = new Info();
        vorbisComment = new Comment();
        vorbisDspState = new DspState();
View Full Code Here


            }
            // goto err;
            return;
        }
        state.serial = og.serialno();
        state.os = new StreamState();
        state.os.init(state.serial);
//  os.reset();

        state.vi = new Info();
        state.vi.init();
View Full Code Here

        System.out.println(state.vi);
    }

    int write(OutputStream out) {
        StreamState streamout = new StreamState();
        Packet header_main = new Packet();
        Packet header_comments = new Packet();
        Packet header_codebooks = new Packet();

        Page ogout = new Page();

        Packet op = new Packet();
        long granpos = 0;

        int result;

        int index;
        byte[] buffer;

        int bytes, eosin;
        int needflush = 0, needout = 0;

        header_main.bytes = state.mainlen;
        header_main.packet_base = state.mainbuf;
        header_main.packet = 0;
        header_main.b_o_s = 1;
        header_main.e_o_s = 0;
        header_main.granulepos = 0;

        header_codebooks.bytes = state.booklen;
        header_codebooks.packet_base = state.bookbuf;
        header_codebooks.packet = 0;
        header_codebooks.b_o_s = 0;
        header_codebooks.e_o_s = 0;
        header_codebooks.granulepos = 0;

        streamout.init(state.serial);

        state.vc.header_out(header_comments);

        streamout.packetin(header_main);
        streamout.packetin(header_comments);
        streamout.packetin(header_codebooks);

//System.out.println("%1");

        while ((result = streamout.flush(ogout)) != 0) {
//System.out.println("result="+result);
            try {
                out.write(ogout.header_base, ogout.header, ogout.header_len);
                out.flush();
            } catch (Exception e) {
                //goto cleanup;
                break;
            }
            try {
                out.write(ogout.body_base, ogout.body, ogout.body_len);
                out.flush();
            } catch (Exception e) {
                //goto cleanup;
                break;
            }
        }

//System.out.println("%2");

        while (state.fetch_next_packet(op) != 0) {
            int size = state.blocksize(op);
            granpos += size;
//System.out.println("#1");
            if (needflush != 0) {
//System.out.println("##1");
                if (streamout.flush(ogout) != 0) {
                    try {
                        out.write(ogout.header_base, ogout.header, ogout.header_len);
                        out.flush();
                    } catch (Exception e) {
                        // TODO e.printStackTrace();
                        //goto cleanup;
                        return -1;
                    }
                    try {
                        out.write(ogout.body_base, ogout.body, ogout.body_len);
                        out.flush();
                    } catch (Exception e) {
                        // TODO e.printStackTrace();
//System.out.println("ogout.body_base.length="+ogout.body_base.length+
//                   ", ogout.body="+ogout.body+
//                   ", ogout.body_len="+ogout.body_len);
                        //goto cleanup;
                        return -1;
                    }
                }
            } //System.out.println("%2 eosin="+eosin);
            else if (needout != 0) {
//System.out.println("##2");
                if (streamout.pageout(ogout) != 0) {
                    try {
                        out.write(ogout.header_base, ogout.header, ogout.header_len);
                        out.flush();
                    } catch (Exception e) {
                        // TODO e.printStackTrace();
                        //goto cleanup;
                        return -1;
                    }
                    try {
                        out.write(ogout.body_base, ogout.body, ogout.body_len);
                        out.flush();
                    } catch (Exception e) {
                        // TODO e.printStackTrace();
//System.out.println("ogout.body_base.length="+ogout.body_base.length+
//                   ", ogout.body="+ogout.body+
//                   ", ogout.body_len="+ogout.body_len);
                        //goto cleanup;
                        return -1;
                    }
                }
            }

//System.out.println("#2");

            needflush = needout = 0;

            if (op.granulepos == -1) {
                op.granulepos = granpos;
                streamout.packetin(op);
            } else {
                if (granpos > op.granulepos) {
                    granpos = op.granulepos;
                    streamout.packetin(op);
                    needflush = 1;
                } else {
                    streamout.packetin(op);
                    needout = 1;
                }
            }
//System.out.println("#3");
        }

//System.out.println("%3");

        streamout.e_o_s = 1;
        while (streamout.flush(ogout) != 0) {
            try {
                out.write(ogout.header_base, ogout.header, ogout.header_len);
                out.flush();
            } catch (Exception e) {
                // TODO e.printStackTrace();
View Full Code Here

            LOG.log(Level.SEVERE, null, ex);
            return;
        }

        SyncState oy = new SyncState(); // sync and verify incoming physical bitstream
        StreamState os = new StreamState(); // take physical pages, weld into a logical stream of packets
        Page og = new Page(); // one Ogg bitstream page.  Vorbis packets are inside
        Packet op = new Packet(); // one raw packet of data for decode

        Info vi = new Info(); // struct that stores all the static vorbis bitstream settings
        Comment vc = new Comment(); // struct that stores all the bitstream user comments
        DspState vd = new DspState(); // central working state for the packet->PCM decoder
        Block vb = new Block(vd); // local working space for packet->PCM decode

        byte[] buffer;
        int bytes;

        // Decode setup

        oy.init(); // Now we can read pages

        while (true) { // we repeat if the bitstream is chained
            int eos = 0;

            // grab some data at the head of the stream.  We want the first page
            // (which is guaranteed to be small and only contain the Vorbis
            // stream initial header) We need the first page to get the stream
            // serialno.

            // submit a 4k block to libvorbis' Ogg layer
            int index = oy.buffer(4096);
            buffer = oy.data;
            try {
                bytes = input.read(buffer, index, 4096);
            } catch (Exception ex) {
                LOG.log(Level.SEVERE, null, ex);
                return;
            }
            oy.wrote(bytes);

            // Get the first page.
            if (oy.pageout(og) != 1) {
                // have we simply run out of data?  If so, we're done.
                if (bytes < 4096) {
                    break;
                }

                // error case.  Must not be Vorbis data
                LOG.log(Level.SEVERE, "Input does not appear to be an Ogg bitstream.");
                return;
            }

            // Get the serial number and set up the rest of decode.
            // serialno first; use it to set up a logical stream
            os.init(og.serialno());

            // extract the initial header from the first page and verify that the
            // Ogg bitstream is in fact Vorbis data

            // I handle the initial header first instead of just having the code
            // read all three Vorbis headers at once because reading the initial
            // header is an easy way to identify a Vorbis bitstream and it's
            // useful to see that functionality seperated out.

            vi.init();
            vc.init();
            if (os.pagein(og) < 0) {
                // error; stream version mismatch perhaps
                LOG.log(Level.SEVERE, "Error reading first page of Ogg bitstream data.");
                return;
            }

            if (os.packetout(op) != 1) {
                // no page? must not be vorbis
                LOG.log(Level.SEVERE, "Error reading initial header packet.");
                return;
            }

            if (vi.synthesis_headerin(vc, op) < 0) {
                // error case; not a vorbis header
                LOG.log(Level.SEVERE, "This Ogg bitstream does not contain Vorbis audio data.");
                return;
            }

            // At this point, we're sure we're Vorbis.  We've set up the logical
            // (Ogg) bitstream decoder.  Get the comment and codebook headers and
            // set up the Vorbis decoder

            // The next two packets in order are the comment and codebook headers.
            // They're likely large and may span multiple pages.  Thus we reead
            // and submit data until we get our two pacakets, watching that no
            // pages are missing.  If a page is missing, error out; losing a
            // header page is the only place where missing data is fatal. */

            int i = 0;
            while (i < 2) {
                while (i < 2) {

                    int result = oy.pageout(og);
                    if (result == 0) {
                        break; // Need more data
                    }          // Don't complain about missing or corrupt data yet.  We'll
                    // catch it at the packet output phase

                    if (result == 1) {
                        os.pagein(og); // we can ignore any errors here
                        // as they'll also become apparent
                        // at packetout
                        while (i < 2) {
                            result = os.packetout(op);
                            if (result == 0) {
                                break;
                            }
                            if (result == -1) {
                                // Uh oh; data at some point was corrupted or missing!
                                // We can't tolerate that in a header.  Die.
                                LOG.log(Level.SEVERE, "Corrupt secondary header.  Exiting.");
                                return;
                            }
                            vi.synthesis_headerin(vc, op);
                            i++;
                        }
                    }
                }
                // no harm in not checking before adding more
                index = oy.buffer(4096);
                buffer = oy.data;
                try {
                    bytes = input.read(buffer, index, 4096);
                } catch (Exception ex) {
                    LOG.log(Level.SEVERE, null, ex);
                    return;
                }
                if (bytes == 0 && i < 2) {
                    LOG.log(Level.SEVERE, "End of file before finding all Vorbis headers!");
                    return;
                }
                oy.wrote(bytes);
            }

            // Throw the comments plus a few lines about the bitstream we're
            // decoding
            {
                byte[][] ptr = vc.user_comments;
                for (int j = 0; j < ptr.length; j++) {
                    if (ptr[j] == null) {
                        break;
                    }
                    LOG.log(Level.INFO, new String(ptr[j], 0, ptr[j].length - 1));
                }
                LOG.log(Level.INFO, "\nBitstream is {0} channel, {1}Hz", new Object[]{vi.channels, vi.rate});
                LOG.log(Level.INFO, "Encoded by: {0}\n", new String(vc.vendor, 0, vc.vendor.length - 1));
            }
            convsize = 4096 / vi.channels;

            // OK, got and parsed all three headers. Initialize the Vorbis
            //  packet->PCM decoder.
            vd.synthesis_init(vi); // central decode state
            vb.init(vd); // local state for most of the decode
            // so multiple block decodes can
            // proceed in parallel.  We could init
            // multiple vorbis_block structures
            // for vd here

            float[][][] _pcm = new float[1][][];
            int[] _index = new int[vi.channels];
            // The rest is just a straight decode loop until end of stream
            while (eos == 0) {
                while (eos == 0) {

                    int result = oy.pageout(og);
                    if (result == 0) {
                        break; // need more data
                    }
                    if (result == -1) { // missing or corrupt data at this page position
                        LOG.log(Level.INFO, "Corrupt or missing data in bitstream; continuing...");
                    } else {
                        os.pagein(og); // can safely ignore errors at
                        // this point
                        while (true) {
                            result = os.packetout(op);

                            if (result == 0) {
                                break; // need more data
                            }
                            if (result == -1) { // missing or corrupt data at this page position
                                // no reason to complain; already complained above
                            } else {
                                // we have a packet.  Decode it
                                int samples;
                                if (vb.synthesis(op) == 0) { // test for success!
                                    vd.synthesis_blockin(vb);
                                }

                                // **pcm is a multichannel float vector.  In stereo, for
                                // example, pcm[0] is left, and pcm[1] is right.  samples is
                                // the size of each channel.  Convert the float values
                                // (-1.<=range<=1.) to whatever PCM format and write it out

                                while ((samples = vd.synthesis_pcmout(_pcm, _index)) > 0) {
                                    float[][] pcm = _pcm[0];
                                    int bout = (samples < convsize ? samples : convsize);

                                    // convert floats to 16 bit signed ints (host order) and
                                    // interleave
                                    for (i = 0; i < vi.channels; i++) {
                                        int ptr = i * 2;
                                        //int ptr=i;
                                        int mono = _index[i];
                                        for (int j = 0; j < bout; j++) {
                                            int val = (int) (pcm[i][mono + j] * 32767.);
                                            //          short val=(short)(pcm[i][mono+j]*32767.);
                                            //          int val=(int)Math.round(pcm[i][mono+j]*32767.);
                                            // might as well guard against clipping
                                            if (val > 32767) {
                                                val = 32767;
                                            }
                                            if (val < -32768) {
                                                val = -32768;
                                            }
                                            if (val < 0) {
                                                val |= 0x8000;
                                            }
                                            convbuffer[ptr] = (byte) (val);
                                            convbuffer[ptr + 1] = (byte) (val >>> 8);
                                            ptr += 2 * (vi.channels);
                                        }
                                    }

                                    System.out.write(convbuffer, 0, 2 * vi.channels * bout);

                                    // tell libvorbis how
                                    // many samples we
                                    // actually consumed
                                    vd.synthesis_read(bout);
                                }
                            }
                        }
                        if (og.eos() != 0) {
                            eos = 1;
                        }
                    }
                }
                if (eos == 0) {
                    index = oy.buffer(4096);
                    buffer = oy.data;
                    try {
                        bytes = input.read(buffer, index, 4096);
                    } catch (Exception ex) {
                        LOG.log(Level.SEVERE, null, ex);
                        return;
                    }
                    oy.wrote(bytes);
                    if (bytes == 0) {
                        eos = 1;
                    }
                }
            }

            // clean up this logical bitstream; before exit we see if we're
            // followed by another [chained]

            os.clear();

            // ogg_page and ogg_packet structs always point to storage in
            // libvorbis.  They're never freed or manipulated directly

            vb.clear();
View Full Code Here

    /**
     * Initializes all the jOrbis and jOgg vars that are used for song playback.
     */
    private void init_jorbis() {
        oggSyncState_ = new SyncState();
        oggStreamState_ = new StreamState();
        oggPage_ = new Page();
        oggPacket_ = new Packet();
        vorbisInfo = new Info();
        vorbisComment = new Comment();
        vorbisDspState = new DspState();
View Full Code Here

        }
    }

    void init_jorbis() {
        oy = new SyncState();
        os = new StreamState();
        og = new Page();
        op = new Packet();

        vi = new Info();
        vc = new Comment();
View Full Code Here

    /**
     * inits jorbis
     */
    private void init_jorbis() {
        oy = new SyncState();
        os = new StreamState();
        og = new Page();
        op = new Packet();

        vi = new Info();
        vc = new Comment();
View Full Code Here

TOP

Related Classes of org.vorbis.jcraft.jogg.StreamState

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.