summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Moffitt <jack@xiph.org>2000-09-26 19:29:22 +0000
committerJack Moffitt <jack@xiph.org>2000-09-26 19:29:22 +0000
commitdc147423649c5daf5688b32b8a54ae793701d3d9 (patch)
treed5193dfd6b4d20749b5347e3e9178db104ae06ae
parentd7c77a665330a3d228c5d71d85cb6aa143741c19 (diff)
downloadogg-dc147423649c5daf5688b32b8a54ae793701d3d9.tar.gz
ogg_stream_eof -> ogg_stream_eos
git-svn-id: http://svn.xiph.org/trunk/ogg@691 0101bb08-14d6-0310-b084-bc0e0c8e3800
-rw-r--r--include/ogg/ogg.h2
-rw-r--r--src/framing.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/ogg/ogg.h b/include/ogg/ogg.h
index 1329ea5..3fd44d8 100644
--- a/include/ogg/ogg.h
+++ b/include/ogg/ogg.h
@@ -136,7 +136,7 @@ extern int ogg_stream_init(ogg_stream_state *os,int serialno);
extern int ogg_stream_clear(ogg_stream_state *os);
extern int ogg_stream_reset(ogg_stream_state *os);
extern int ogg_stream_destroy(ogg_stream_state *os);
-extern int ogg_stream_eof(ogg_stream_state *os);
+extern int ogg_stream_eos(ogg_stream_state *os);
extern int ogg_page_version(ogg_page *og);
extern int ogg_page_continued(ogg_page *og);
diff --git a/src/framing.c b/src/framing.c
index 2420a1d..55caa59 100644
--- a/src/framing.c
+++ b/src/framing.c
@@ -13,7 +13,7 @@
function: code raw [Vorbis] packets into framed OggSquish stream and
decode Ogg streams back into raw packets
- last mod: $Id: framing.c,v 1.2 2000/09/26 17:55:58 jack Exp $
+ last mod: $Id: framing.c,v 1.3 2000/09/26 19:29:22 jack Exp $
note: The CRC code is directly derived from public domain code by
Ross Williams (ross@guest.adelaide.edu.au). See docs/framing.html
@@ -373,7 +373,7 @@ int ogg_stream_pageout(ogg_stream_state *os, ogg_page *og){
return(0);
}
-int ogg_stream_eof(ogg_stream_state *os){
+int ogg_stream_eos(ogg_stream_state *os){
return os->e_o_s;
}