This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Rename remaining url_ftell to avio_tell.
tags/n0.9
Clément Bœsch
13 years ago
parent
055cda8acc
commit
63b796b0dd
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/g723_1.c
+1
-1
libavformat/mpegts.c
+ 1
- 1
libavformat/g723_1.c
View File
@@ -50,7 +50,7 @@ static int g723_1_read_packet(AVFormatContext *s, AVPacket *pkt)
{
int size, byte, ret;
pkt->pos =
url_f
tell(s->pb);
pkt->pos =
avio_
tell(s->pb);
byte = avio_r8(s->pb);
size = frame_size[byte & 3];
+ 1
- 1
libavformat/mpegts.c
View File
@@ -2113,7 +2113,7 @@ static int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
if (buf[0] != 0x47) {
if (mpegts_resync(s) < 0)
return AV_NOPTS_VALUE;
pos =
url_f
tell(s->pb);
pos =
avio_
tell(s->pb);
continue;
}
if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
Write
Preview
Loading…
Cancel
Save