Rename remaining url_fseek to avio_seek.

This commit is contained in:
Clément Bœsch
2011-11-14 00:52:55 +01:00
parent eef3ea8c71
commit 39edfcc9e8
2 changed files with 8 additions and 8 deletions

View File

@@ -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;
}