summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2009-05-27 03:55:40 +0000
committerMonty <xiphmont@xiph.org>2009-05-27 03:55:40 +0000
commit22f8dcde1fb2ca6316d25f187d340d9b29591294 (patch)
tree1e2dda54932176c27b9df7c9c47362c1449d0acf /include
parent73aa7c483dad0cbbdebd5849d2c397077727c7c6 (diff)
downloadogg-git-22f8dcde1fb2ca6316d25f187d340d9b29591294.tar.gz
Add now async error interface calls to ogg.h
svn path=/trunk/ogg/; revision=16048
Diffstat (limited to 'include')
-rw-r--r--include/ogg/ogg.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ogg/ogg.h b/include/ogg/ogg.h
index 9ff2c95..e620e49 100644
--- a/include/ogg/ogg.h
+++ b/include/ogg/ogg.h
@@ -167,6 +167,7 @@ extern int ogg_sync_init(ogg_sync_state *oy);
extern int ogg_sync_clear(ogg_sync_state *oy);
extern int ogg_sync_reset(ogg_sync_state *oy);
extern int ogg_sync_destroy(ogg_sync_state *oy);
+extern int ogg_sync_check(ogg_sync_state *oy);
extern char *ogg_sync_buffer(ogg_sync_state *oy, long size);
extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
@@ -183,6 +184,7 @@ extern int ogg_stream_clear(ogg_stream_state *os);
extern int ogg_stream_reset(ogg_stream_state *os);
extern int ogg_stream_reset_serialno(ogg_stream_state *os,int serialno);
extern int ogg_stream_destroy(ogg_stream_state *os);
+extern int ogg_stream_check(ogg_stream_state *os);
extern int ogg_stream_eos(ogg_stream_state *os);
extern void ogg_page_checksum_set(ogg_page *og);