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
28ca701e
Commit
28ca701e
authored
Aug 12, 2011
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: add missing brackets.
This caused failure of a few fate tests.
parent
28c1115a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
h264_refs.c
libavcodec/h264_refs.c
+4
-3
No files found.
libavcodec/h264_refs.c
View file @
28ca701e
...
...
@@ -515,9 +515,10 @@ int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
pic
=
find_short
(
h
,
frame_num
,
&
j
);
if
(
!
pic
){
if
(
mmco
[
i
].
opcode
!=
MMCO_SHORT2LONG
||
!
h
->
long_ref
[
mmco
[
i
].
long_arg
]
||
h
->
long_ref
[
mmco
[
i
].
long_arg
]
->
frame_num
!=
frame_num
)
av_log
(
h
->
s
.
avctx
,
AV_LOG_ERROR
,
"mmco: unref short failure
\n
"
);
err
=
AVERROR_INVALIDDATA
;
||
h
->
long_ref
[
mmco
[
i
].
long_arg
]
->
frame_num
!=
frame_num
)
{
av_log
(
h
->
s
.
avctx
,
AV_LOG_ERROR
,
"mmco: unref short failure
\n
"
);
err
=
AVERROR_INVALIDDATA
;
}
continue
;
}
}
...
...
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