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
Jeeva Raj A
VVCSoftware_VTM
Commits
bfe158b0
Commit
bfe158b0
authored
Jul 19, 2019
by
Karsten Suehring
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-rpl' into 'master'
Fix RPL creation and parsing See merge request
jvet/VVCSoftware_VTM!633
parents
65a4a484
123acfc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
source/Lib/DecoderLib/VLCReader.cpp
source/Lib/DecoderLib/VLCReader.cpp
+12
-1
No files found.
source/Lib/DecoderLib/VLCReader.cpp
View file @
bfe158b0
...
...
@@ -1537,6 +1537,12 @@ void HLSyntaxReader::parseSliceHeader (Slice* pcSlice, ParameterSetManager *para
{
READ_CODE
(
sps
->
getBitsForPOC
(),
uiCode
,
"slice_pic_order_cnt_lsb"
);
pcSlice
->
setPOC
(
uiCode
);
ReferencePictureList
*
rpl0
=
pcSlice
->
getLocalRPL0
();
(
*
rpl0
)
=
ReferencePictureList
();
pcSlice
->
setRPL0
(
rpl0
);
ReferencePictureList
*
rpl1
=
pcSlice
->
getLocalRPL1
();
(
*
rpl1
)
=
ReferencePictureList
();
pcSlice
->
setRPL1
(
rpl1
);
}
else
{
...
...
@@ -1588,6 +1594,11 @@ void HLSyntaxReader::parseSliceHeader (Slice* pcSlice, ParameterSetManager *para
pcSlice
->
setRPL0idx
(
uiCode
);
pcSlice
->
setRPL0
(
sps
->
getRPLList0
()
->
getReferencePictureList
(
uiCode
));
}
else
{
pcSlice
->
setRPL0idx
(
0
);
pcSlice
->
setRPL0
(
sps
->
getRPLList0
()
->
getReferencePictureList
(
0
));
}
}
//Deal POC Msb cycle signalling for LTRP
for
(
int
i
=
0
;
i
<
pcSlice
->
getRPL0
()
->
getNumberOfLongtermPictures
()
+
pcSlice
->
getRPL0
()
->
getNumberOfShorttermPictures
();
i
++
)
...
...
@@ -1621,7 +1632,7 @@ void HLSyntaxReader::parseSliceHeader (Slice* pcSlice, ParameterSetManager *para
}
else
{
if
(
sps
->
getNumRPL
0
()
>
0
)
if
(
sps
->
getNumRPL
1
()
>
0
)
{
READ_FLAG
(
uiCode
,
"ref_pic_list_sps_flag[1]"
);
}
...
...
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