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
7b79305a
Commit
7b79305a
authored
Nov 14, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename remaining url_fskip to avio_skip.
parent
b04ee900
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
act.c
libavformat/act.c
+2
-2
bintext.c
libavformat/bintext.c
+2
-2
No files found.
libavformat/act.c
View file @
7b79305a
...
...
@@ -73,7 +73,7 @@ static int read_header(AVFormatContext *s,
if
(
!
st
)
return
AVERROR
(
ENOMEM
);
url_f
skip
(
pb
,
16
);
avio_
skip
(
pb
,
16
);
size
=
get_le32
(
pb
);
ff_get_wav_header
(
pb
,
st
->
codec
,
size
);
...
...
@@ -188,7 +188,7 @@ static int read_packet(AVFormatContext *s,
if
(
ctx
->
bytes_left_in_chunk
<
frame_size
)
{
url_f
skip
(
pb
,
ctx
->
bytes_left_in_chunk
);
avio_
skip
(
pb
,
ctx
->
bytes_left_in_chunk
);
ctx
->
bytes_left_in_chunk
=
CHUNK_SIZE
;
}
...
...
libavformat/bintext.c
View file @
7b79305a
...
...
@@ -178,7 +178,7 @@ static int xbin_read_header(AVFormatContext *s,
if
(
!
st
)
return
AVERROR
(
ENOMEM
);
url_f
skip
(
pb
,
5
);
avio_
skip
(
pb
,
5
);
st
->
codec
->
width
=
get_le16
(
pb
)
<<
3
;
st
->
codec
->
height
=
get_le16
(
pb
);
fontheight
=
avio_r8
(
pb
);
...
...
@@ -235,7 +235,7 @@ static int adf_read_header(AVFormatContext *s,
if
(
avio_read
(
pb
,
st
->
codec
->
extradata
+
2
,
24
)
<
0
)
return
AVERROR
(
EIO
);
url_f
skip
(
pb
,
144
);
avio_
skip
(
pb
,
144
);
if
(
avio_read
(
pb
,
st
->
codec
->
extradata
+
2
+
24
,
24
)
<
0
)
return
AVERROR
(
EIO
);
if
(
avio_read
(
pb
,
st
->
codec
->
extradata
+
2
+
48
,
4096
)
<
0
)
...
...
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