summaryrefslogtreecommitdiff
path: root/libavformat/act.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-11-14 01:28:05 +0100
committerClément Bœsch <ubitux@gmail.com>2011-11-14 07:22:31 +0100
commit7b79305a47773aed4926726f71a8347a18262f80 (patch)
treef755dd5ae9868ab4bb26efad5941ba394e0fbe7d /libavformat/act.c
parentb04ee900435bbfcc03d1b480a8f0355863fbc65d (diff)
Rename remaining url_fskip to avio_skip.
Diffstat (limited to 'libavformat/act.c')
-rw-r--r--libavformat/act.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/act.c b/libavformat/act.c
index 329d0b026c..e55b43170b 100644
--- a/libavformat/act.c
+++ b/libavformat/act.c
@@ -73,7 +73,7 @@ static int read_header(AVFormatContext *s,
if (!st)
return AVERROR(ENOMEM);
- url_fskip(pb, 16);
+ avio_skip(pb, 16);
size=get_le32(pb);
ff_get_wav_header(pb, st->codec, size);
@@ -188,7 +188,7 @@ static int read_packet(AVFormatContext *s,
if(ctx->bytes_left_in_chunk < frame_size)
{
- url_fskip(pb, ctx->bytes_left_in_chunk);
+ avio_skip(pb, ctx->bytes_left_in_chunk);
ctx->bytes_left_in_chunk=CHUNK_SIZE;
}