org.tritonus.lowlevel.ogg
Class StreamState

java.lang.Object
  extended byorg.tritonus.lowlevel.ogg.StreamState

public class StreamState
extends Object

Wrapper for ogg_stream_state.


Constructor Summary
StreamState()
           
 
Method Summary
 int clear()
          Calls ogg_stream_clear().
 int destroy()
          Calls ogg_stream_destroy().
 void finalize()
           
 int flush(Page page)
          Calls ogg_stream_flush().
 void free()
           
 int init(int nSerialNo)
          Calls ogg_stream_init().
 boolean isEOSReached()
          Calls ogg_stream_eos().
 int packetIn(Packet packet)
          Calls ogg_stream_packetin().
 int packetOut(Packet packet)
          Calls ogg_stream_packetout().
 int packetPeek(Packet packet)
          Calls ogg_stream_packetpeek().
 int pageIn(Page page)
          Calls ogg_stream_pagein().
 int pageOut(Page page)
          Calls ogg_stream_pageout().
 int reset()
          Calls ogg_stream_reset().
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StreamState

public StreamState()
Method Detail

finalize

public void finalize()
Overrides:
finalize in class Object

free

public void free()

init

public int init(int nSerialNo)
Calls ogg_stream_init().


clear

public int clear()
Calls ogg_stream_clear().


reset

public int reset()
Calls ogg_stream_reset().


destroy

public int destroy()
Calls ogg_stream_destroy().


isEOSReached

public boolean isEOSReached()
Calls ogg_stream_eos().


packetIn

public int packetIn(Packet packet)
Calls ogg_stream_packetin().


pageOut

public int pageOut(Page page)
Calls ogg_stream_pageout().


flush

public int flush(Page page)
Calls ogg_stream_flush().


pageIn

public int pageIn(Page page)
Calls ogg_stream_pagein().


packetOut

public int packetOut(Packet packet)
Calls ogg_stream_packetout().


packetPeek

public int packetPeek(Packet packet)
Calls ogg_stream_packetpeek().