diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2003-04-12 12:02:56 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2003-04-12 12:02:56 +0000 |
commit | 46a55a85b91882c4e154269aaf9fcce41ebb9474 (patch) | |
tree | 1a5189d5d4b5917641d6e8f26f93f2c869987084 | |
parent | f1c57dd99131894a32607f18b298172996f2c2c3 (diff) | |
download | xine-lib-46a55a85b91882c4e154269aaf9fcce41ebb9474.tar.gz xine-lib-46a55a85b91882c4e154269aaf9fcce41ebb9474.tar.bz2 |
fix compilation with gcc 2.95.4
CVS patchset: 4590
CVS date: 2003/04/12 12:02:56
-rw-r--r-- | src/demuxers/demux_ogg.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c index 7907770d1..aebc5de16 100644 --- a/src/demuxers/demux_ogg.c +++ b/src/demuxers/demux_ogg.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_ogg.c,v 1.71 2003/04/12 04:30:45 heinchen Exp $ + * $Id: demux_ogg.c,v 1.72 2003/04/12 12:02:56 jstembridge Exp $ * * demultiplexer for ogg streams * @@ -379,6 +379,8 @@ static void demux_ogg_send_header (demux_ogg_t *this) { int done = 0; + int filelength,position,i; + ogg_packet op; #ifdef LOG @@ -814,7 +816,6 @@ static void demux_ogg_send_header (demux_ogg_t *this) { } } - int filelength,position,i; this->time_length=-1; if (this->input->get_capabilities(this->input) & INPUT_CAP_SEEKABLE) { |