Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ECM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ECM
ECM
Commits
321a84e2
Commit
321a84e2
authored
9 months ago
by
Vadim Seregin
Committed by
Jie Chen
9 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix compiler warning and cleanup
parent
2182dc37
No related branches found
No related tags found
1 merge request
!686
Fix compiler warning and cleanup
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+0
-7
0 additions, 7 deletions
CMakeLists.txt
source/Lib/CommonLib/IntraPrediction.cpp
+1
-1
1 addition, 1 deletion
source/Lib/CommonLib/IntraPrediction.cpp
with
1 addition
and
8 deletions
CMakeLists.txt
+
0
−
7
View file @
321a84e2
...
...
@@ -29,7 +29,6 @@ endif()
set
(
EXTENSION_360_VIDEO OFF CACHE BOOL
"If EXTENSION_360_VIDEO is on, 360Lib will be added"
)
set
(
EXTENSION_HDRTOOLS OFF CACHE BOOL
"If EXTENSION_HDRTOOLS is on, HDRLib will be added"
)
set
(
EXTENSION_CABAC_TRAINING OFF CACHE BOOL
"If EXTENSION_CABAC_TRAINING is on, boost will be added"
)
if
(
DEFINED ENABLE_TRACING
)
set
(
ENABLE_TRACING OFF CACHE BOOL
"ENABLE_TRACING will be set to this value"
)
...
...
@@ -121,9 +120,6 @@ if( XCODE )
endif
()
# add needed subdirectories
if
(
EXTENSION_CABAC_TRAINING
)
add_subdirectory
(
"source/Lib/boost"
)
endif
()
add_subdirectory
(
"source/Lib/CommonLib"
)
add_subdirectory
(
"source/Lib/CommonAnalyserLib"
)
if
(
EXTENSION_360_VIDEO
)
...
...
@@ -146,9 +142,6 @@ add_subdirectory( "source/App/Parcat" )
add_subdirectory
(
"source/App/StreamMergeApp"
)
add_subdirectory
(
"source/App/BitstreamExtractorApp"
)
add_subdirectory
(
"source/App/CabacTraining"
)
if
(
EXTENSION_CABAC_TRAINING
)
add_subdirectory
(
"source/App/RateEstimator"
)
endif
()
if
(
EXTENSION_360_VIDEO
)
add_subdirectory
(
"source/App/utils/360ConvertApp"
)
endif
()
This diff is collapsed.
Click to expand it.
source/Lib/CommonLib/IntraPrediction.cpp
+
1
−
1
View file @
321a84e2
...
...
@@ -1446,9 +1446,9 @@ void IntraPrediction::predIntraAng( const ComponentID compId, PelBuf &piPred, co
if (!pu.ciipPDPC)
{
#endif
#if JVET_AH0209_PDP
const uint32_t width = pu.lwidth();
const uint32_t height = pu.lheight();
#if JVET_AH0209_PDP
const int sizeKey = (width << 8) + height;
const int sizeIdx = g_size.find( sizeKey ) != g_size.end() ? g_size[sizeKey] : -1;
auto modeIdx = g_modeGroup[uiDirMode];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment