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
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
16
Merge Requests
16
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
jvet
VVCSoftware_VTM
Commits
bb8ce740
Commit
bb8ce740
authored
May 22, 2020
by
Karsten Suehring
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix_1080' into 'master'
Default initialize NALUnit when reading it See merge request
!1649
parents
06ff9552
3f934b61
Pipeline
#5001
passed with stage
in 9 minutes and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
source/Lib/DecoderLib/NALread.h
source/Lib/DecoderLib/NALread.h
+1
-1
No files found.
source/Lib/DecoderLib/NALread.h
View file @
bb8ce740
...
...
@@ -59,7 +59,7 @@ class InputNALUnit : public NALUnit
public:
InputNALUnit
(
const
InputNALUnit
&
src
)
:
NALUnit
(
src
),
m_Bitstream
(
src
.
m_Bitstream
)
{};
InputNALUnit
()
:
m_Bitstream
()
{};
InputNALUnit
()
:
NALUnit
(
NAL_UNIT_INVALID
),
m_Bitstream
()
{};
virtual
~
InputNALUnit
()
{
}
const
InputBitstream
&
getBitstream
()
const
{
return
m_Bitstream
;
}
InputBitstream
&
getBitstream
()
{
return
m_Bitstream
;
}
...
...
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