summaryrefslogtreecommitdiff
path: root/libavformat/mp3.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/mp3.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/mp3.c')
-rw-r--r--libavformat/mp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c
index dc4ec3dfc2..ebd7ef4be1 100644
--- a/libavformat/mp3.c
+++ b/libavformat/mp3.c
@@ -258,7 +258,7 @@ static int mp3_read_header(AVFormatContext *s,
/* try to get the TAG */
if (!url_is_streamed(&s->pb)) {
/* XXX: change that */
- filesize = url_filesize(url_fileno(&s->pb));
+ filesize = url_fsize(&s->pb);
if (filesize > 128) {
url_fseek(&s->pb, filesize - 128, SEEK_SET);
ret = get_buffer(&s->pb, buf, ID3_TAG_SIZE);