Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
VVCSoftware_VTM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hendry
VVCSoftware_VTM
Commits
42cd3ca1
Commit
42cd3ca1
authored
Jul 29, 2020
by
Hendry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FixForR0270Implementation: Considering CRA that is preceded by EOS
parent
092bf370
Pipeline
#5492
passed with stage
in 11 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
source/App/DecoderApp/DecApp.cpp
source/App/DecoderApp/DecApp.cpp
+7
-3
No files found.
source/App/DecoderApp/DecApp.cpp
View file @
42cd3ca1
...
...
@@ -173,10 +173,14 @@ uint32_t DecApp::decode()
xFlushOutput
(
pcListPic
,
nalu
.
m_nuhLayerId
);
}
#if JVET_R0270
if
(
nalu
.
m_nalUnitType
==
NAL_UNIT_CODED_SLICE_TRAIL
||
nalu
.
m_nalUnitType
==
NAL_UNIT_CODED_SLICE_STSA
)
if
(
m_cDecLib
.
getFirstSliceInPicture
()
&&
nalu
.
m_nalUnitType
==
NAL_UNIT_CODED_SLICE_CRA
&&
isEosPresentInPu
)
{
// Once the picture has TRAIL or or STSA slice, no more special treatment for new CLVS picture for the rest of
// pictures until new CLVS picture is received.
// A CRA that is immediately preceded by an EOS is a CLVSS
m_newCLVS
[
nalu
.
m_nuhLayerId
]
=
true
;
}
else
if
(
m_cDecLib
.
getFirstSliceInPicture
()
&&
nalu
.
m_nalUnitType
==
NAL_UNIT_CODED_SLICE_CRA
&&
!
isEosPresentInPu
)
{
// A CRA that is not immediately precede by an EOS is not a CLVSS
m_newCLVS
[
nalu
.
m_nuhLayerId
]
=
false
;
}
#endif
...
...
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