Browse Source

rmenc: replace avio_seek(0) with avio_tell()

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Anton Khirnov 14 years ago
parent
commit
447fe33691
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavformat/rmenc.c

+ 1 - 1
libavformat/rmenc.c

@@ -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 */