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
3773e5fc
Commit
3773e5fc
authored
Oct 18, 2007
by
Aurelien Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove 2 temporary variables
Originally committed as revision 10788 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
9853ce80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
electronicarts.c
libavformat/electronicarts.c
+2
-4
No files found.
libavformat/electronicarts.c
View file @
3773e5fc
...
...
@@ -143,7 +143,6 @@ static int process_audio_header_elements(AVFormatContext *s)
*/
static
int
process_ea_header
(
AVFormatContext
*
s
)
{
uint32_t
blockid
,
size
=
0
;
int
num
,
den
;
EaDemuxContext
*
ea
=
s
->
priv_data
;
ByteIOContext
*
pb
=
&
s
->
pb
;
...
...
@@ -151,9 +150,8 @@ static int process_ea_header(AVFormatContext *s) {
if
(
blockid
==
MVhd_TAG
)
{
size
=
get_le32
(
pb
);
url_fskip
(
pb
,
16
);
den
=
get_le32
(
pb
);
num
=
get_le32
(
pb
);
ea
->
time_base
=
(
AVRational
)
{
num
,
den
};
ea
->
time_base
.
den
=
get_le32
(
pb
);
ea
->
time_base
.
num
=
get_le32
(
pb
);
url_fskip
(
pb
,
size
-
32
);
blockid
=
get_le32
(
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