diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2005-05-19 00:06:27 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2005-05-19 00:06:27 +0000 |
commit | a965c478b2b2fe7d9d0a2c60561bb4ee171a2119 (patch) | |
tree | 92bd415fe4020d93d262d7a120ec0b00823cb3b3 /libavformat/avidec.c | |
parent | 3b5ffe7a399a8ff8a600a31ba9b4348e5d2e8b86 (diff) | |
download | ffmpeg-a965c478b2b2fe7d9d0a2c60561bb4ee171a2119.tar.gz |
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
Originally committed as revision 4275 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avidec.c')
-rw-r--r-- | libavformat/avidec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index bf020187e1..1f636a0a50 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -125,7 +125,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap) if (tag1 == MKTAG('m', 'o', 'v', 'i')) { avi->movi_list = url_ftell(pb) - 4; if(size) avi->movi_end = avi->movi_list + size; - else avi->movi_end = url_filesize(url_fileno(pb)); + else avi->movi_end = url_fsize(pb); #ifdef DEBUG printf("movi end=%Lx\n", avi->movi_end); #endif @@ -486,7 +486,7 @@ resync: if (i >= avi->movi_end) { if (avi->is_odml) { url_fskip(pb, avi->riff_end - i); - avi->riff_end = avi->movi_end = url_filesize(url_fileno(pb)); + avi->riff_end = avi->movi_end = url_fsize(pb); } else break; } |