avio: avio_ prefix for url_fseek

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
Anton Khirnov
2011-02-28 14:57:54 +01:00
committed by Ronald S. Bultje
parent 76d8846c4e
commit 6b4aa5dac8
90 changed files with 352 additions and 347 deletions

View File

@@ -332,9 +332,9 @@ void ff_end_tag(AVIOContext *pb, int64_t start)
int64_t pos;
pos = url_ftell(pb);
url_fseek(pb, start - 4, SEEK_SET);
avio_seek(pb, start - 4, SEEK_SET);
avio_wl32(pb, (uint32_t)(pos - start));
url_fseek(pb, pos, SEEK_SET);
avio_seek(pb, pos, SEEK_SET);
}
/* WAVEFORMATEX header */