Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Remy Foray
VVCSoftware_VTM
Commits
e742495d
Commit
e742495d
authored
Apr 29, 2019
by
Karsten Suehring
Browse files
fix order of modes for ISP
parent
848ba28b
Changes
1
Hide whitespace changes
Inline
Side-by-side
source/Lib/EncoderLib/IntraSearch.cpp
View file @
e742495d
...
...
@@ -1326,14 +1326,14 @@ void IntraSearch::estIntraPredLumaQT( CodingUnit &cu, Partitioner &partitioner,
static_vector
<
ModeInfo
,
FAST_UDI_MAX_RDMODE_NUM
>
uiRdModeListTemp
;
for
(
int
i
=
0
;
i
<
uiRdModeList
.
size
();
i
++
)
{
if
(
!
uiRdModeList
[
i
].
mipFlg
)
if
(
!
uiRdModeList
[
i
].
mipFlg
&&
uiRdModeList
[
i
].
ispMod
==
NOT_INTRA_SUBPARTITIONS
)
{
uiRdModeListTemp
.
push_back
(
uiRdModeList
[
i
]
);
}
}
for
(
int
i
=
0
;
i
<
uiRdModeList
.
size
();
i
++
)
{
if
(
uiRdModeList
[
i
].
mipFlg
)
if
(
uiRdModeList
[
i
].
mipFlg
||
uiRdModeList
[
i
].
ispMod
!=
NOT_INTRA_SUBPARTITIONS
)
{
uiRdModeListTemp
.
push_back
(
uiRdModeList
[
i
]
);
}
...
...
Write
Preview
Supports
Markdown
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