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
c142e2a0
Commit
c142e2a0
authored
Nov 14, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename remaining get_le16 to avio_rl16.
parent
49651063
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
act.c
libavformat/act.c
+1
-1
bintext.c
libavformat/bintext.c
+2
-2
No files found.
libavformat/act.c
View file @
c142e2a0
...
...
@@ -93,7 +93,7 @@ static int read_header(AVFormatContext *s,
st
->
codec
->
codec_id
=
CODEC_ID_G729
;
avio_seek
(
pb
,
257
,
SEEK_SET
);
msec
=
get_le
16
(
pb
);
msec
=
avio_rl
16
(
pb
);
sec
=
avio_r8
(
pb
);
min
=
get_le32
(
pb
);
...
...
libavformat/bintext.c
View file @
c142e2a0
...
...
@@ -179,8 +179,8 @@ static int xbin_read_header(AVFormatContext *s,
return
AVERROR
(
ENOMEM
);
avio_skip
(
pb
,
5
);
st
->
codec
->
width
=
get_le
16
(
pb
)
<<
3
;
st
->
codec
->
height
=
get_le
16
(
pb
);
st
->
codec
->
width
=
avio_rl
16
(
pb
)
<<
3
;
st
->
codec
->
height
=
avio_rl
16
(
pb
);
fontheight
=
avio_r8
(
pb
);
st
->
codec
->
height
*=
fontheight
;
flags
=
avio_r8
(
pb
);
...
...
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