diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 00:52:55 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 07:22:30 +0100 |
commit | 39edfcc9e8cc107b4e4ba42ba16f745eaada6db8 (patch) | |
tree | 09f8476ecdf0ef79372845f086bddd762280ac81 /libavformat/act.c | |
parent | eef3ea8c710d87da889e31e65b40b36cc7a2648e (diff) | |
download | ffmpeg-39edfcc9e8cc107b4e4ba42ba16f745eaada6db8.tar.gz |
Rename remaining url_fseek to avio_seek.
Diffstat (limited to 'libavformat/act.c')
-rw-r--r-- | libavformat/act.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/act.c b/libavformat/act.c index a2e8b9f8e1..a21f2a3433 100644 --- a/libavformat/act.c +++ b/libavformat/act.c @@ -92,7 +92,7 @@ static int read_header(AVFormatContext *s, st->codec->codec_id=CODEC_ID_G729; - url_fseek(pb, 257, SEEK_SET); + avio_seek(pb, 257, SEEK_SET); msec=get_le16(pb); sec=get_byte(pb); min=get_le32(pb); @@ -101,7 +101,7 @@ static int read_header(AVFormatContext *s, ctx->bytes_left_in_chunk=CHUNK_SIZE; - url_fseek(pb, 512, SEEK_SET); + avio_seek(pb, 512, SEEK_SET); return 0; } |