Browse code

Rename remaining url_ftell to avio_tell.

Clément Bœsch authored on 2011/11/14 09:23:00
Showing 2 changed files
... ...
@@ -50,7 +50,7 @@ static int g723_1_read_packet(AVFormatContext *s, AVPacket *pkt)
50 50
 {
51 51
     int size, byte, ret;
52 52
 
53
-    pkt->pos = url_ftell(s->pb);
53
+    pkt->pos = avio_tell(s->pb);
54 54
     byte     = avio_r8(s->pb);
55 55
     size     = frame_size[byte & 3];
56 56
 
... ...
@@ -2113,7 +2113,7 @@ static int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
2113 2113
         if (buf[0] != 0x47) {
2114 2114
             if (mpegts_resync(s) < 0)
2115 2115
                 return AV_NOPTS_VALUE;
2116
-            pos = url_ftell(s->pb);
2116
+            pos = avio_tell(s->pb);
2117 2117
             continue;
2118 2118
         }
2119 2119
         if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&