tmf_totalsize is not used either, remove it

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24478 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-09-14 17:04:36 +00:00
parent 5789ab4ab7
commit b49196162c
1 changed files with 0 additions and 7 deletions

View File

@ -111,7 +111,6 @@ typedef struct sTivoInfo
int tmf;
tmf_fileParts tmfparts[ MAX_TMF_PARTS ];
int tmf_totalparts;
off_t tmf_totalsize;
} TiVoInfo;
off_t vstream_streamsize( );
@ -218,12 +217,6 @@ static int ty_tmf_filetoparts( demuxer_t *demux, TiVoInfo *tivo )
mp_msg( MSGT_DEMUX, MSGL_DBG3,
"tmf_filetoparts(): No More Part Files %d\n", parts );
tivo->tmf_totalsize = 0;
for( index = 0 ; index < tivo->tmf_totalparts ; index++ )
tivo->tmf_totalsize += tivo->tmfparts[ index ].fileSize;
mp_msg( MSGT_DEMUX, MSGL_DBG3,
"tmf_filetoparts():total size %"PRId64"\n", (int64_t)tivo->tmf_totalsize );
return 1;
}