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
649686d8
Commit
649686d8
authored
Feb 27, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/h264_refs: remove lost frames instead of disfavoring them
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
33a2b45c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
h264_refs.c
libavcodec/h264_refs.c
+10
-1
No files found.
libavcodec/h264_refs.c
View file @
649686d8
...
...
@@ -75,7 +75,7 @@ static int build_def_list(Picture *def, int def_len,
int
index
=
0
;
while
(
i
[
0
]
<
len
||
i
[
1
]
<
len
)
{
while
(
i
[
0
]
<
len
&&
!
(
in
[
i
[
0
]]
&&
(
in
[
i
[
0
]]
->
reference
&
sel
)
&&
(
!
in
[
i
[
0
]]
->
invalid_gap
||
sel
==
3
)
))
while
(
i
[
0
]
<
len
&&
!
(
in
[
i
[
0
]]
&&
(
in
[
i
[
0
]]
->
reference
&
sel
)))
i
[
0
]
++
;
while
(
i
[
1
]
<
len
&&
!
(
in
[
i
[
1
]]
&&
(
in
[
i
[
1
]]
->
reference
&
(
sel
^
3
))))
i
[
1
]
++
;
...
...
@@ -752,6 +752,15 @@ int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count)
}
}
for
(
i
=
0
;
i
<
h
->
short_ref_count
;
i
++
)
{
pic
=
h
->
short_ref
[
i
];
if
(
pic
->
invalid_gap
)
{
int
d
=
(
h
->
cur_pic_ptr
->
frame_num
-
pic
->
frame_num
)
&
((
1
<<
h
->
sps
.
log2_max_frame_num
)
-
1
);
if
(
d
>
h
->
sps
.
ref_frame_count
)
remove_short
(
h
,
pic
->
frame_num
,
0
);
}
}
print_short_term
(
h
);
print_long_term
(
h
);
...
...
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