summaryrefslogtreecommitdiff
path: root/libavformat/dv.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/dv.c
parent3b5ffe7a399a8ff8a600a31ba9b4348e5d2e8b86 (diff)
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/dv.c')
-rw-r--r--libavformat/dv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c
index ed6a740cf6..ff5f4bedb0 100644
--- a/libavformat/dv.c
+++ b/libavformat/dv.c
@@ -815,7 +815,7 @@ static int64_t dv_frame_offset(AVFormatContext *s, DVDemuxContext *c,
// FIXME: sys may be wrong if last dv_read_packet() failed (buffer is junk)
const DVprofile* sys = dv_codec_profile(&c->vst->codec);
int64_t offset;
- int64_t size = url_filesize(url_fileno(&s->pb));
+ int64_t size = url_fsize(&s->pb);
int64_t max_offset = ((size-1) / sys->frame_size) * sys->frame_size;
offset = sys->frame_size * timestamp;