summaryrefslogtreecommitdiffstats
path: root/libavformat/yuv.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2005-05-19 00:06:27 +0000
committerAurelien Jacobs <aurel@gnuage.org>2005-05-19 00:06:27 +0000
commita965c478b2b2fe7d9d0a2c60561bb4ee171a2119 (patch)
tree92bd415fe4020d93d262d7a120ec0b00823cb3b3 /libavformat/yuv.c
parent3b5ffe7a399a8ff8a600a31ba9b4348e5d2e8b86 (diff)
downloadffmpeg-streaming-a965c478b2b2fe7d9d0a2c60561bb4ee171a2119.zip
ffmpeg-streaming-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/yuv.c')
-rw-r--r--libavformat/yuv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/yuv.c b/libavformat/yuv.c
index 7037bb4..c4bce68 100644
--- a/libavformat/yuv.c
+++ b/libavformat/yuv.c
@@ -54,9 +54,10 @@ static int yuv_read(ByteIOContext *f,
URLContext *h;
AVImageInfo info1, *info = &info1;
+ img_size = url_fsize(f);
+
/* XXX: hack hack */
h = url_fileno(f);
- img_size = url_seek(h, 0, SEEK_END);
url_get_filename(h, fname, sizeof(fname));
if (infer_size(&info->width, &info->height, img_size) < 0) {
OpenPOWER on IntegriCloud