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
58a26de5
Commit
58a26de5
authored
Jan 02, 2019
by
Karsten Suehring
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix_ticket141' into 'master'
Fix ticket
#141
Memory release problem in HMVP See merge request
!141
parents
a86ab09c
1b94c3f1
Pipeline
#479
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
source/Lib/EncoderLib/EncCu.cpp
source/Lib/EncoderLib/EncCu.cpp
+3
-3
No files found.
source/Lib/EncoderLib/EncCu.cpp
View file @
58a26de5
...
...
@@ -192,20 +192,20 @@ void EncCu::destroy()
{
delete
[]
m_pTempMotLUTs
[
w
][
h
]
->
motionCand
;
m_pTempMotLUTs
[
w
][
h
]
->
motionCand
=
nullptr
;
delete
[]
m_pTempMotLUTs
[
w
][
h
];
delete
m_pTempMotLUTs
[
w
][
h
];
}
if
(
m_pBestMotLUTs
[
w
][
h
])
{
delete
[]
m_pBestMotLUTs
[
w
][
h
]
->
motionCand
;
m_pBestMotLUTs
[
w
][
h
]
->
motionCand
=
nullptr
;
delete
[]
m_pBestMotLUTs
[
w
][
h
];
delete
m_pBestMotLUTs
[
w
][
h
];
}
if
(
m_pSplitTempMotLUTs
[
w
][
h
])
{
delete
[]
m_pSplitTempMotLUTs
[
w
][
h
]
->
motionCand
;
m_pSplitTempMotLUTs
[
w
][
h
]
->
motionCand
=
nullptr
;
delete
[]
m_pSplitTempMotLUTs
[
w
][
h
];
delete
m_pSplitTempMotLUTs
[
w
][
h
];
}
#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