org.tritonus.lowlevel.ogg
Class SyncState

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

public class SyncState
extends Object

Wrapper for ogg_sync_state.


Constructor Summary
SyncState()
           
 
Method Summary
 void clear()
          Calls ogg_sync_clear().
 void destroy()
          Calls ogg_sync_destroy().
 void finalize()
           
 void free()
           
 void init()
          Calls ogg_sync_init().
 int pageOut(Page page)
          Calls ogg_sync_pageout().
 int pageseek(Page page)
          Calls ogg_sync_pageseek().
 void reset()
          Calls ogg_sync_reset().
 int write(byte[] abBuffer, int nBytes)
          Calls ogg_sync_buffer() and ogg_sync_wrote().
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SyncState

public SyncState()
Method Detail

finalize

public void finalize()
Overrides:
finalize in class Object

free

public void free()

init

public void init()
Calls ogg_sync_init().


clear

public void clear()
Calls ogg_sync_clear().


reset

public void reset()
Calls ogg_sync_reset().


destroy

public void destroy()
Calls ogg_sync_destroy().


write

public int write(byte[] abBuffer,
                 int nBytes)
Calls ogg_sync_buffer() and ogg_sync_wrote().


pageseek

public int pageseek(Page page)
Calls ogg_sync_pageseek().


pageOut

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