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
d0f78e77
Commit
d0f78e77
authored
May 23, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avidec: simplify avi_read_idx1()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
212f129f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
avidec.c
libavformat/avidec.c
+3
-3
No files found.
libavformat/avidec.c
View file @
d0f78e77
...
@@ -1245,7 +1245,7 @@ static int avi_read_idx1(AVFormatContext *s, int size)
...
@@ -1245,7 +1245,7 @@ static int avi_read_idx1(AVFormatContext *s, int size)
AVIStream
*
ast
;
AVIStream
*
ast
;
unsigned
int
index
,
tag
,
flags
,
pos
,
len
,
first_packet
=
1
;
unsigned
int
index
,
tag
,
flags
,
pos
,
len
,
first_packet
=
1
;
unsigned
last_pos
=
-
1
;
unsigned
last_pos
=
-
1
;
unsigned
last_
len
=
0
;
unsigned
last_
idx
=
-
1
;
int64_t
idx1_pos
,
first_packet_pos
=
0
,
data_offset
=
0
;
int64_t
idx1_pos
,
first_packet_pos
=
0
,
data_offset
=
0
;
nb_index_entries
=
size
/
16
;
nb_index_entries
=
size
/
16
;
...
@@ -1292,12 +1292,12 @@ static int avi_read_idx1(AVFormatContext *s, int size)
...
@@ -1292,12 +1292,12 @@ static int avi_read_idx1(AVFormatContext *s, int size)
// switch to non-interleaved to get correct timestamps
// switch to non-interleaved to get correct timestamps
if
(
last_pos
==
pos
)
if
(
last_pos
==
pos
)
avi
->
non_interleaved
=
1
;
avi
->
non_interleaved
=
1
;
if
(
(
last_pos
!=
pos
||
!
last_len
)
&&
len
)
{
if
(
last_idx
!=
pos
&&
len
)
{
av_add_index_entry
(
st
,
pos
,
ast
->
cum_len
,
len
,
0
,
(
flags
&
AVIIF_INDEX
)
?
AVINDEX_KEYFRAME
:
0
);
av_add_index_entry
(
st
,
pos
,
ast
->
cum_len
,
len
,
0
,
(
flags
&
AVIIF_INDEX
)
?
AVINDEX_KEYFRAME
:
0
);
last_idx
=
pos
;
}
}
ast
->
cum_len
+=
get_duration
(
ast
,
len
);
ast
->
cum_len
+=
get_duration
(
ast
,
len
);
last_pos
=
pos
;
last_pos
=
pos
;
last_len
=
len
;
}
}
return
0
;
return
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