Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/rsoenc.c')
-rw-r--r--libavformat/rsoenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rsoenc.c b/libavformat/rsoenc.c
index 9c5ee9bd62..c776a1ac2a 100644
--- a/libavformat/rsoenc.c
+++ b/libavformat/rsoenc.c
@@ -91,9 +91,9 @@ static int rso_write_trailer(AVFormatContext *s)
}
/* update file size */
- url_fseek(pb, 2, SEEK_SET);
+ avio_seek(pb, 2, SEEK_SET);
avio_wb16(pb, coded_file_size);
- url_fseek(pb, file_size, SEEK_SET);
+ avio_seek(pb, file_size, SEEK_SET);
put_flush_packet(pb);