summaryrefslogtreecommitdiff
path: root/src/framing.c
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 /src/framing.c
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
Diffstat (limited to 'src/framing.c')
-rw-r--r--src/framing.c4
1 files changed, 2 insertions, 2 deletions
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;
}