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
07c7ffc0
Commit
07c7ffc0
authored
Nov 14, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename remaining get_le32 to avio_rl32.
parent
c142e2a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
act.c
libavformat/act.c
+2
-2
No files found.
libavformat/act.c
View file @
07c7ffc0
...
...
@@ -74,7 +74,7 @@ static int read_header(AVFormatContext *s,
return
AVERROR
(
ENOMEM
);
avio_skip
(
pb
,
16
);
size
=
get_le
32
(
pb
);
size
=
avio_rl
32
(
pb
);
ff_get_wav_header
(
pb
,
st
->
codec
,
size
);
/*
...
...
@@ -95,7 +95,7 @@ static int read_header(AVFormatContext *s,
avio_seek
(
pb
,
257
,
SEEK_SET
);
msec
=
avio_rl16
(
pb
);
sec
=
avio_r8
(
pb
);
min
=
get_le
32
(
pb
);
min
=
avio_rl
32
(
pb
);
st
->
duration
=
av_rescale
(
1000
*
(
min
*
60
+
sec
)
+
msec
,
st
->
codec
->
sample_rate
,
1000
*
st
->
codec
->
frame_size
);
...
...
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