diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-28 14:57:55 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-03-03 14:15:08 +0100 |
commit | 74b3f67c9c0a237843a3379391b9929e9bcfcb6e (patch) | |
tree | 091bff9913be9ca258a72dfc0b11a91c424b1243 /libavformat/msnwc_tcp.c | |
parent | f59d8ff8cd75796256344a5c635054427928c62d (diff) | |
download | ffmpeg-74b3f67c9c0a237843a3379391b9929e9bcfcb6e.tar.gz |
lavf: replace all uses of url_fskip with avio_seek
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit e356fc57a2e9887370caec58d8aafeafd1f336dc)
Diffstat (limited to 'libavformat/msnwc_tcp.c')
-rw-r--r-- | libavformat/msnwc_tcp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/msnwc_tcp.c b/libavformat/msnwc_tcp.c index 3033c23a91..2a11a57201 100644 --- a/libavformat/msnwc_tcp.c +++ b/libavformat/msnwc_tcp.c @@ -104,19 +104,19 @@ static int msnwc_tcp_read_packet(AVFormatContext *ctx, AVPacket *pkt) uint16_t keyframe; uint32_t size, timestamp; - url_fskip(pb, 1); /* one byte has been read ahead */ - url_fskip(pb, 2); - url_fskip(pb, 2); + avio_seek(pb, 1, SEEK_CUR); /* one byte has been read ahead */ + avio_seek(pb, 2, SEEK_CUR); + avio_seek(pb, 2, SEEK_CUR); keyframe = avio_rl16(pb); size = avio_rl32(pb); - url_fskip(pb, 4); - url_fskip(pb, 4); + avio_seek(pb, 4, SEEK_CUR); + avio_seek(pb, 4, SEEK_CUR); timestamp = avio_rl32(pb); if(!size || av_get_packet(pb, pkt, size) != size) return -1; - url_fskip(pb, 1); /* Read ahead one byte of struct size like read_header */ + avio_seek(pb, 1, SEEK_CUR); /* Read ahead one byte of struct size like read_header */ pkt->pts = timestamp; pkt->dts = timestamp; |