1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-12 01:49:33 +00:00

removed nonsense stream_reset/seek in check_file()

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10038 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2003-04-30 20:24:09 +00:00
parent 65f8b757fb
commit 4919658621
3 changed files with 0 additions and 8 deletions

View File

@ -23,9 +23,6 @@ typedef struct {
// Check if a file is a BMP file depending on whether starts with 'BM'
int bmp_check_file(demuxer_t *demuxer)
{
stream_reset(demuxer->stream);
stream_seek(demuxer->stream, 0);
if (stream_read_word(demuxer->stream) == (('B' << 8) | 'M'))
return 1;
else

View File

@ -68,8 +68,6 @@ int rawdv_check_file(demuxer_t *demuxer)
mp_msg(MSGT_DEMUX,MSGL_V,"Checking for DV\n");
stream_reset(demuxer->stream);
stream_seek(demuxer->stream, 0);
bytes_read=stream_read(demuxer->stream,tmp_buffer,DV_PAL_FRAME_SIZE);
if ((bytes_read!=DV_PAL_FRAME_SIZE) && (bytes_read!=DV_NTSC_FRAME_SIZE))
return 0;

View File

@ -50,9 +50,6 @@ typedef struct roq_data_t
// 84 10 FF FF FF FF xx xx
int roq_check_file(demuxer_t *demuxer)
{
stream_reset(demuxer->stream);
stream_seek(demuxer->stream, 0);
if ((stream_read_dword(demuxer->stream) == 0x8410FFFF) &&
((stream_read_dword(demuxer->stream) & 0xFFFF0000) == 0xFFFF0000))
return 1;