[FFmpeg-cvslog] Rename remaining url_fskip to avio_skip.

Clément Bœsch git at videolan.org
Mon Nov 14 07:26:16 CET 2011


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Mon Nov 14 01:28:05 2011 +0100| [7b79305a47773aed4926726f71a8347a18262f80] | committer: Clément Bœsch

Rename remaining url_fskip to avio_skip.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7b79305a47773aed4926726f71a8347a18262f80
---

 libavformat/act.c     |    4 ++--
 libavformat/bintext.c |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/act.c b/libavformat/act.c
index 329d0b0..e55b431 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;
     }
 
diff --git a/libavformat/bintext.c b/libavformat/bintext.c
index ea0c553..a4f1d67 100644
--- a/libavformat/bintext.c
+++ b/libavformat/bintext.c
@@ -178,7 +178,7 @@ static int xbin_read_header(AVFormatContext *s,
     if (!st)
         return AVERROR(ENOMEM);
 
-    url_fskip(pb, 5);
+    avio_skip(pb, 5);
     st->codec->width   = get_le16(pb)<<3;
     st->codec->height  = get_le16(pb);
     fontheight         = avio_r8(pb);
@@ -235,7 +235,7 @@ static int adf_read_header(AVFormatContext *s,
 
     if (avio_read(pb, st->codec->extradata + 2, 24) < 0)
         return AVERROR(EIO);
-    url_fskip(pb, 144);
+    avio_skip(pb, 144);
     if (avio_read(pb, st->codec->extradata + 2 + 24, 24) < 0)
         return AVERROR(EIO);
     if (avio_read(pb, st->codec->extradata + 2 + 48, 4096) < 0)



More information about the ffmpeg-cvslog mailing list