diff options
author | Jack Moffitt <jack@xiph.org> | 2000-09-26 19:29:22 +0000 |
---|---|---|
committer | Jack Moffitt <jack@xiph.org> | 2000-09-26 19:29:22 +0000 |
commit | 768a677a97e97e96451027e0a9b91ee628c37d81 (patch) | |
tree | d5193dfd6b4d20749b5347e3e9178db104ae06ae /src | |
parent | 5461445d66e9c49774532c0c6659dad3dc3f762e (diff) | |
download | ogg-git-768a677a97e97e96451027e0a9b91ee628c37d81.tar.gz |
ogg_stream_eof -> ogg_stream_eos
svn path=/trunk/ogg/; revision=691
Diffstat (limited to 'src')
-rw-r--r-- | src/framing.c | 4 |
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; } |