Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
63b796b0
Commit
63b796b0
authored
Nov 14, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename remaining url_ftell to avio_tell.
parent
055cda8a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
g723_1.c
libavformat/g723_1.c
+1
-1
mpegts.c
libavformat/mpegts.c
+1
-1
No files found.
libavformat/g723_1.c
View file @
63b796b0
...
...
@@ -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
];
...
...
libavformat/mpegts.c
View file @
63b796b0
...
...
@@ -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
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment