mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 18:32:22 +00:00
rmenc: replace avio_seek(0) with avio_tell()
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
e42500cb4f
commit
447fe33691
@ -436,7 +436,7 @@ static int rm_write_trailer(AVFormatContext *s)
|
||||
|
||||
if (!url_is_streamed(s->pb)) {
|
||||
/* end of file: finish to write header */
|
||||
index_pos = avio_seek(pb, 0, SEEK_CUR);
|
||||
index_pos = avio_tell(pb);
|
||||
data_size = index_pos - rm->data_pos;
|
||||
|
||||
/* FIXME: write index */
|
||||
|
Loading…
Reference in New Issue
Block a user