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
11
Merge Requests
11
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
6f5ce047
Commit
6f5ce047
authored
Jan 18, 2019
by
Karsten Suehring
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove macro JVET_L0191_LM_WO_LMS
parent
3911adcf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
373 deletions
+0
-373
source/Lib/CommonLib/IntraPrediction.cpp
source/Lib/CommonLib/IntraPrediction.cpp
+0
-365
source/Lib/CommonLib/IntraPrediction.h
source/Lib/CommonLib/IntraPrediction.h
+0
-3
source/Lib/CommonLib/Rom.cpp
source/Lib/CommonLib/Rom.cpp
+0
-2
source/Lib/CommonLib/Rom.h
source/Lib/CommonLib/Rom.h
+0
-2
source/Lib/CommonLib/TypeDef.h
source/Lib/CommonLib/TypeDef.h
+0
-1
No files found.
source/Lib/CommonLib/IntraPrediction.cpp
View file @
6f5ce047
...
@@ -1924,20 +1924,6 @@ void IntraPrediction::xGetLumaRecPixels(const PredictionUnit &pu, CompArea chrom
...
@@ -1924,20 +1924,6 @@ void IntraPrediction::xGetLumaRecPixels(const PredictionUnit &pu, CompArea chrom
pRecSrc0
+=
iRecStride2
;
pRecSrc0
+=
iRecStride2
;
}
}
}
}
#if JVET_L0338_MDLM && !JVET_L0191_LM_WO_LMS
void
IntraPrediction
::
xPadMdlmTemplateSample
(
Pel
*
pSrc
,
Pel
*
pCur
,
int
cWidth
,
int
cHeight
,
int
existSampNum
,
int
targetSampNum
)
{
int
sampNumToBeAdd
=
targetSampNum
-
existSampNum
;
Pel
*
pTempSrc
=
pSrc
+
existSampNum
;
Pel
*
pTempCur
=
pCur
+
existSampNum
;
for
(
int
i
=
0
;
i
<
sampNumToBeAdd
;
i
++
)
{
pTempSrc
[
i
]
=
pSrc
[
existSampNum
-
1
];
pTempCur
[
i
]
=
pCur
[
existSampNum
-
1
];
}
}
#endif
#if JVET_L0191_LM_WO_LMS
void
IntraPrediction
::
xGetLMParameters
(
const
PredictionUnit
&
pu
,
const
ComponentID
compID
,
void
IntraPrediction
::
xGetLMParameters
(
const
PredictionUnit
&
pu
,
const
ComponentID
compID
,
const
CompArea
&
chromaArea
,
const
CompArea
&
chromaArea
,
int
&
a
,
int
&
b
,
int
&
iShift
)
int
&
a
,
int
&
b
,
int
&
iShift
)
...
@@ -2154,356 +2140,5 @@ void IntraPrediction::xGetLMParameters(const PredictionUnit &pu, const Component
...
@@ -2154,356 +2140,5 @@ void IntraPrediction::xGetLMParameters(const PredictionUnit &pu, const Component
iShift
=
0
;
iShift
=
0
;
}
}
}
}
#else
static
int
GetFloorLog2
(
unsigned
x
)
{
int
bits
=
-
1
;
while
(
x
>
0
)
{
bits
++
;
x
>>=
1
;
}
return
bits
;
}
void
IntraPrediction
::
xGetLMParameters
(
const
PredictionUnit
&
pu
,
const
ComponentID
compID
,
const
CompArea
&
chromaArea
,
int
&
a
,
int
&
b
,
int
&
iShift
)
{
CHECK
(
compID
==
COMPONENT_Y
,
""
);
const
SizeType
uiCWidth
=
chromaArea
.
width
;
const
SizeType
uiCHeight
=
chromaArea
.
height
;
const
Position
posLT
=
chromaArea
;
CodingStructure
&
cs
=
*
(
pu
.
cs
);
const
CodingUnit
&
cu
=
*
(
pu
.
cu
);
const
SPS
&
sps
=
*
cs
.
sps
;
const
uint32_t
uiTuWidth
=
chromaArea
.
width
;
const
uint32_t
uiTuHeight
=
chromaArea
.
height
;
const
ChromaFormat
nChromaFormat
=
sps
.
getChromaFormatIdc
();
const
int
iBaseUnitSize
=
1
<<
MIN_CU_LOG2
;
const
int
iUnitWidth
=
iBaseUnitSize
>>
getComponentScaleX
(
chromaArea
.
compID
,
nChromaFormat
);
const
int
iUnitHeight
=
iBaseUnitSize
>>
getComponentScaleX
(
chromaArea
.
compID
,
nChromaFormat
);
const
int
iTUWidthInUnits
=
uiTuWidth
/
iUnitWidth
;
const
int
iTUHeightInUnits
=
uiTuHeight
/
iUnitHeight
;
const
int
iAboveUnits
=
iTUWidthInUnits
;
const
int
iLeftUnits
=
iTUHeightInUnits
;
#if JVET_L0338_MDLM
int
topTemplateSampNum
=
2
*
uiCWidth
;
// for MDLM, the template sample number is 2W or 2H;
int
leftTemplateSampNum
=
2
*
uiCHeight
;
assert
(
m_topRefLength
>=
topTemplateSampNum
);
assert
(
m_leftRefLength
>=
leftTemplateSampNum
);
int
totalAboveUnits
=
(
topTemplateSampNum
+
(
iUnitWidth
-
1
))
/
iUnitWidth
;
int
totalLeftUnits
=
(
leftTemplateSampNum
+
(
iUnitHeight
-
1
))
/
iUnitHeight
;
int
totalUnits
=
totalLeftUnits
+
totalAboveUnits
+
1
;
int
aboveRightUnits
=
totalAboveUnits
-
iAboveUnits
;
int
leftBelowUnits
=
totalLeftUnits
-
iLeftUnits
;
int
avaiAboveRightUnits
=
0
;
int
avaiLeftBelowUnits
=
0
;
int
avaiAboveUnits
=
0
;
int
avaiLeftUnits
=
0
;
int
curChromaMode
=
pu
.
intraDir
[
1
];
#endif
bool
bNeighborFlags
[
4
*
MAX_NUM_PART_IDXS_IN_CTU_WIDTH
+
1
];
#if JVET_L0338_MDLM
memset
(
bNeighborFlags
,
0
,
totalUnits
);
#else
memset
(
bNeighborFlags
,
0
,
1
+
iLeftUnits
+
iAboveUnits
);
#endif
bool
bAboveAvaillable
,
bLeftAvaillable
;
int
availlableUnit
=
isAboveAvailable
(
cu
,
CHANNEL_TYPE_CHROMA
,
posLT
,
iAboveUnits
,
iUnitWidth
,
#if JVET_L0338_MDLM
(
bNeighborFlags
+
iLeftUnits
+
leftBelowUnits
+
1
)
);
#else
(
bNeighborFlags
+
iLeftUnits
+
1
)
);
#endif
bAboveAvaillable
=
availlableUnit
==
iTUWidthInUnits
;
availlableUnit
=
isLeftAvailable
(
cu
,
CHANNEL_TYPE_CHROMA
,
posLT
,
iLeftUnits
,
iUnitHeight
,
#if JVET_L0338_MDLM
(
bNeighborFlags
+
iLeftUnits
+
leftBelowUnits
-
1
)
);
#else
(
bNeighborFlags
+
iLeftUnits
-
1
)
);
#endif
bLeftAvaillable
=
availlableUnit
==
iTUHeightInUnits
;
#if JVET_L0338_MDLM
if
(
bLeftAvaillable
)
// if left is not available, then the below left is not available
{
avaiLeftUnits
=
iTUHeightInUnits
;
avaiLeftBelowUnits
=
isBelowLeftAvailable
(
cu
,
CHANNEL_TYPE_CHROMA
,
chromaArea
.
bottomLeftComp
(
chromaArea
.
compID
),
leftBelowUnits
,
iUnitHeight
,
(
bNeighborFlags
+
leftBelowUnits
-
1
));
}
if
(
bAboveAvaillable
)
// if above is not available, then the above right is not available.
{
avaiAboveUnits
=
iTUWidthInUnits
;
avaiAboveRightUnits
=
isAboveRightAvailable
(
cu
,
CHANNEL_TYPE_CHROMA
,
chromaArea
.
topRightComp
(
chromaArea
.
compID
),
aboveRightUnits
,
iUnitWidth
,
(
bNeighborFlags
+
iLeftUnits
+
leftBelowUnits
+
iAboveUnits
+
1
));
}
#endif
Pel
*
pSrcColor0
,
*
pCurChroma0
;
int
iSrcStride
,
iCurStride
;
PelBuf
Temp
;
#if JVET_L0338_MDLM
if
((
curChromaMode
==
MDLM_L_IDX
)
||
(
curChromaMode
==
MDLM_T_IDX
))
{
iSrcStride
=
2
*
MAX_CU_SIZE
+
1
;
Temp
=
PelBuf
(
m_pMdlmTemp
+
iSrcStride
+
1
,
iSrcStride
,
Size
(
chromaArea
));
}
else
{
#endif
iSrcStride
=
MAX_CU_SIZE
+
1
;
Temp
=
PelBuf
(
m_piTemp
+
iSrcStride
+
1
,
iSrcStride
,
Size
(
chromaArea
));
#if JVET_L0338_MDLM
}
#endif
pSrcColor0
=
Temp
.
bufAt
(
0
,
0
);
pCurChroma0
=
getPredictorPtr
(
compID
);
iCurStride
=
m_topRefLength
+
1
;
pCurChroma0
+=
iCurStride
+
1
;
int
x
=
0
,
y
=
0
,
xx
=
0
,
xy
=
0
;
int
iCountShift
=
0
;
unsigned
uiInternalBitDepth
=
sps
.
getBitDepth
(
CHANNEL_TYPE_CHROMA
);
Pel
*
pSrc
=
pSrcColor0
-
iSrcStride
;
Pel
*
pCur
=
pCurChroma0
-
iCurStride
;
#if JVET_L0338_MDLM
//get the temp buffer to store the downsampled luma and chroma
Pel
*
pTempBufferSrc
=
new
Pel
[
2
*
MAX_CU_SIZE
];
// for MDLM, use tempalte size 2W or 2H,
Pel
*
pTempBufferCur
=
new
Pel
[
2
*
MAX_CU_SIZE
];
int
actualTopTemplateSampNum
=
iUnitWidth
*
(
avaiAboveUnits
+
avaiAboveRightUnits
);
int
actualLeftTemplateSampNum
=
iUnitHeight
*
(
avaiLeftUnits
+
avaiLeftBelowUnits
);
if
((
curChromaMode
==
MDLM_L_IDX
)
||
(
curChromaMode
==
MDLM_T_IDX
))
{
if
(
curChromaMode
==
MDLM_T_IDX
)
{
if
(
bAboveAvaillable
)
{
for
(
int
j
=
0
;
j
<
actualTopTemplateSampNum
;
j
++
)
{
pTempBufferSrc
[
j
]
=
pSrc
[
j
];
pTempBufferCur
[
j
]
=
pCur
[
j
];
}
}
}
else
{
if
(
bLeftAvaillable
)
{
pSrc
=
pSrcColor0
-
1
;
pCur
=
pCurChroma0
-
1
;
for
(
int
i
=
0
;
i
<
actualLeftTemplateSampNum
;
i
++
)
{
pTempBufferSrc
[
i
]
=
pSrc
[
iSrcStride
*
i
];
pTempBufferCur
[
i
]
=
pCur
[
iCurStride
*
i
];
}
}
}
//pad the temple sample to targetSampNum.
int
orgNumSample
=
(
curChromaMode
==
MDLM_T_IDX
)
?
(
avaiAboveUnits
*
iUnitWidth
)
:
(
avaiLeftUnits
*
iUnitHeight
);
int
existSampNum
=
(
curChromaMode
==
MDLM_T_IDX
)
?
actualTopTemplateSampNum
:
actualLeftTemplateSampNum
;
int
targetSampNum
=
1
<<
(
g_aucLog2
[
existSampNum
-
1
]
+
1
);
if
(
orgNumSample
==
0
)
{
delete
[]
pTempBufferSrc
;
delete
[]
pTempBufferCur
;
pTempBufferSrc
=
nullptr
;
pTempBufferCur
=
nullptr
;
a
=
0
;
b
=
1
<<
(
uiInternalBitDepth
-
1
);
iShift
=
0
;
return
;
}
if
(
targetSampNum
!=
existSampNum
)
//if existSampNum not a value of power of 2
{
xPadMdlmTemplateSample
(
pTempBufferSrc
,
pTempBufferCur
,
uiCWidth
,
uiCHeight
,
existSampNum
,
targetSampNum
);
}
for
(
int
j
=
0
;
j
<
targetSampNum
;
j
++
)
{
x
+=
pTempBufferSrc
[
j
];
y
+=
pTempBufferCur
[
j
];
xx
+=
pTempBufferSrc
[
j
]
*
pTempBufferSrc
[
j
];
xy
+=
pTempBufferSrc
[
j
]
*
pTempBufferCur
[
j
];
}
iCountShift
=
g_aucLog2
[
targetSampNum
];
}
else
{
#endif
int
minDim
=
bLeftAvaillable
&&
bAboveAvaillable
?
1
<<
g_aucPrevLog2
[
std
::
min
(
uiCHeight
,
uiCWidth
)]
:
1
<<
g_aucPrevLog2
[
bLeftAvaillable
?
uiCHeight
:
uiCWidth
];
int
minStep
=
1
;
int
numSteps
=
minDim
/
minStep
;
if
(
bAboveAvaillable
)
{
for
(
int
j
=
0
;
j
<
numSteps
;
j
++
)
{
int
idx
=
(
j
*
minStep
*
uiCWidth
)
/
minDim
;
x
+=
pSrc
[
idx
];
y
+=
pCur
[
idx
];
xx
+=
pSrc
[
idx
]
*
pSrc
[
idx
];
xy
+=
pSrc
[
idx
]
*
pCur
[
idx
];
}
iCountShift
=
g_aucLog2
[
minDim
/
minStep
];
}
if
(
bLeftAvaillable
)
{
pSrc
=
pSrcColor0
-
1
;
pCur
=
pCurChroma0
-
1
;
for
(
int
i
=
0
;
i
<
numSteps
;
i
++
)
{
int
idx
=
(
i
*
uiCHeight
*
minStep
)
/
minDim
;
x
+=
pSrc
[
iSrcStride
*
idx
];
y
+=
pCur
[
iCurStride
*
idx
];
xx
+=
pSrc
[
iSrcStride
*
idx
]
*
pSrc
[
iSrcStride
*
idx
];
xy
+=
pSrc
[
iSrcStride
*
idx
]
*
pCur
[
iCurStride
*
idx
];
}
iCountShift
+=
bAboveAvaillable
?
1
:
g_aucLog2
[
minDim
/
minStep
];
}
#if JVET_L0338_MDLM
}
delete
[]
pTempBufferSrc
;
delete
[]
pTempBufferCur
;
pTempBufferSrc
=
nullptr
;
pTempBufferCur
=
nullptr
;
#endif
#if JVET_L0338_MDLM
if
((
curChromaMode
==
MDLM_L_IDX
)
||
(
curChromaMode
==
MDLM_T_IDX
))
{
if
((
curChromaMode
==
MDLM_L_IDX
)
?
(
!
bLeftAvaillable
)
:
(
!
bAboveAvaillable
))
{
a
=
0
;
b
=
1
<<
(
uiInternalBitDepth
-
1
);
iShift
=
0
;
return
;
}
}
else
{
#endif
if
(
!
bLeftAvaillable
&&
!
bAboveAvaillable
)
{
a
=
0
;
b
=
1
<<
(
uiInternalBitDepth
-
1
);
iShift
=
0
;
return
;
}
#if JVET_L0338_MDLM
}
#endif
int
iTempShift
=
uiInternalBitDepth
+
iCountShift
-
15
;
if
(
iTempShift
>
0
)
{
x
=
(
x
+
(
1
<<
(
iTempShift
-
1
)
)
)
>>
iTempShift
;
y
=
(
y
+
(
1
<<
(
iTempShift
-
1
)
)
)
>>
iTempShift
;
xx
=
(
xx
+
(
1
<<
(
iTempShift
-
1
)
)
)
>>
iTempShift
;
xy
=
(
xy
+
(
1
<<
(
iTempShift
-
1
)
)
)
>>
iTempShift
;
iCountShift
-=
iTempShift
;
}
/////// xCalcLMParameters
int
avgX
=
x
>>
iCountShift
;
int
avgY
=
y
>>
iCountShift
;
int
RErrX
=
x
&
(
(
1
<<
iCountShift
)
-
1
);
int
RErrY
=
y
&
(
(
1
<<
iCountShift
)
-
1
);
int
iB
=
7
;
iShift
=
13
-
iB
;
if
(
iCountShift
==
0
)
{
a
=
0
;
b
=
1
<<
(
uiInternalBitDepth
-
1
);
iShift
=
0
;
}
else
{
int
a1
=
xy
-
(
avgX
*
avgY
<<
iCountShift
)
-
avgX
*
RErrY
-
avgY
*
RErrX
;
int
a2
=
xx
-
(
avgX
*
avgX
<<
iCountShift
)
-
2
*
avgX
*
RErrX
;
const
int
iShiftA1
=
uiInternalBitDepth
-
2
;
const
int
iShiftA2
=
5
;
const
int
iAccuracyShift
=
uiInternalBitDepth
+
4
;
int
iScaleShiftA2
=
0
;
int
iScaleShiftA1
=
0
;
int
a1s
=
a1
;
int
a2s
=
a2
;
iScaleShiftA1
=
a1
==
0
?
0
:
GetFloorLog2
(
abs
(
a1
)
)
-
iShiftA1
;
iScaleShiftA2
=
a2
==
0
?
0
:
GetFloorLog2
(
abs
(
a2
)
)
-
iShiftA2
;
if
(
iScaleShiftA1
<
0
)
{
iScaleShiftA1
=
0
;
}
if
(
iScaleShiftA2
<
0
)
{
iScaleShiftA2
=
0
;
}
int
iScaleShiftA
=
iScaleShiftA2
+
iAccuracyShift
-
iShift
-
iScaleShiftA1
;
a2s
=
a2
>>
iScaleShiftA2
;
a1s
=
a1
>>
iScaleShiftA1
;
if
(
a2s
>=
32
)
{
uint32_t
a2t
=
m_auShiftLM
[
a2s
-
32
];
a
=
a1s
*
a2t
;
}
else
{
a
=
0
;
}
if
(
iScaleShiftA
<
0
)
{
a
=
a
<<
-
iScaleShiftA
;
}
else
{
a
=
a
>>
iScaleShiftA
;
}
a
=
Clip3
(
-
(
1
<<
(
15
-
iB
)
),
(
1
<<
(
15
-
iB
)
)
-
1
,
a
);
a
=
a
<<
iB
;
int16_t
n
=
0
;
if
(
a
!=
0
)
{
n
=
GetFloorLog2
(
abs
(
a
)
+
(
(
a
<
0
?
-
1
:
1
)
-
1
)
/
2
)
-
5
;
}
iShift
=
(
iShift
+
iB
)
-
n
;
a
=
a
>>
n
;
b
=
avgY
-
(
(
a
*
avgX
)
>>
iShift
);
}
}
#endif
//! \}
//! \}
source/Lib/CommonLib/IntraPrediction.h
View file @
6f5ce047
...
@@ -130,9 +130,6 @@ protected:
...
@@ -130,9 +130,6 @@ protected:
void
xFilterGroup
(
Pel
*
pMulDst
[],
int
i
,
Pel
const
*
const
piSrc
,
int
iRecStride
,
bool
bAboveAvaillable
,
bool
bLeftAvaillable
);
void
xFilterGroup
(
Pel
*
pMulDst
[],
int
i
,
Pel
const
*
const
piSrc
,
int
iRecStride
,
bool
bAboveAvaillable
,
bool
bLeftAvaillable
);
void
xGetLMParameters
(
const
PredictionUnit
&
pu
,
const
ComponentID
compID
,
const
CompArea
&
chromaArea
,
int
&
a
,
int
&
b
,
int
&
iShift
);
void
xGetLMParameters
(
const
PredictionUnit
&
pu
,
const
ComponentID
compID
,
const
CompArea
&
chromaArea
,
int
&
a
,
int
&
b
,
int
&
iShift
);
#if JVET_L0338_MDLM && !JVET_L0191_LM_WO_LMS
void
xPadMdlmTemplateSample
(
Pel
*
pSrc
,
Pel
*
pCur
,
int
cWidth
,
int
cHeight
,
int
existSampNum
,
int
targetSampNum
);
#endif
public:
public:
IntraPrediction
();
IntraPrediction
();
virtual
~
IntraPrediction
();
virtual
~
IntraPrediction
();
...
...
source/Lib/CommonLib/Rom.cpp
View file @
6f5ce047
...
@@ -180,7 +180,6 @@ public:
...
@@ -180,7 +180,6 @@ public:
return
rtn
;
return
rtn
;
}
}
};
};
#if JVET_L0191_LM_WO_LMS
int
g_aiLMDivTableLow
[]
=
{
int
g_aiLMDivTableLow
[]
=
{
0
,
0
,
21845
,
0
,
13107
,
43690
,
18724
,
0
,
50972
,
39321
,
53620
,
21845
,
15123
,
9362
,
4369
,
0
,
3855
,
0
,
0
,
21845
,
0
,
13107
,
43690
,
18724
,
0
,
50972
,
39321
,
53620
,
21845
,
15123
,
9362
,
4369
,
0
,
3855
,
58254
,
17246
,
52428
,
49932
,
59578
,
25644
,
43690
,
28835
,
40329
,
16990
,
37449
,
56496
,
34952
,
4228
,
0
,
61564
,
34695
,
58254
,
17246
,
52428
,
49932
,
59578
,
25644
,
43690
,
28835
,
40329
,
16990
,
37449
,
56496
,
34952
,
4228
,
0
,
61564
,
34695
,
...
@@ -245,7 +244,6 @@ int g_aiLMDivTableHigh[] = {
...
@@ -245,7 +244,6 @@ int g_aiLMDivTableHigh[] = {
134
,
134
,
134
,
133
,
133
,
133
,
132
,
132
,
132
,
132
,
131
,
131
,
131
,
131
,
130
,
130
,
130
,
130
,
134
,
134
,
134
,
133
,
133
,
133
,
132
,
132
,
132
,
132
,
131
,
131
,
131
,
131
,
130
,
130
,
130
,
130
,
129
,
129
,
129
,
129
,
128
,
128
,
128
,
128
,
129
,
129
,
129
,
129
,
128
,
128
,
128
,
128
,
};
};
#endif
#if !JVET_L0338_MDLM
#if !JVET_L0338_MDLM
const
int
g_aiNonLMPosThrs
[]
=
{
3
,
1
,
0
};
const
int
g_aiNonLMPosThrs
[]
=
{
3
,
1
,
0
};
#endif
#endif
...
...
source/Lib/CommonLib/Rom.h
View file @
6f5ce047
...
@@ -214,10 +214,8 @@ extern const uint32_t g_scalingListSizeX[SCALING_LIST_SIZE_NUM];
...
@@ -214,10 +214,8 @@ extern const uint32_t g_scalingListSizeX[SCALING_LIST_SIZE_NUM];
extern
MsgLevel
g_verbosity
;
extern
MsgLevel
g_verbosity
;
#if JVET_L0191_LM_WO_LMS
extern
int
g_aiLMDivTableLow
[];
extern
int
g_aiLMDivTableLow
[];
extern
int
g_aiLMDivTableHigh
[];
extern
int
g_aiLMDivTableHigh
[];
#endif
extern
const
int
g_aiNonLMPosThrs
[];
extern
const
int
g_aiNonLMPosThrs
[];
...
...
source/Lib/CommonLib/TypeDef.h
View file @
6f5ce047
...
@@ -64,7 +64,6 @@
...
@@ -64,7 +64,6 @@
#define JVET_L0191_LM_WO_LMS 1 // NO LMS regression. min/max are used instead
#define JVET_L0338_MDLM 1 // multi-directional LM. L0338 test5.4.1,L0340 test5.6.1
#define JVET_L0338_MDLM 1 // multi-directional LM. L0338 test5.4.1,L0340 test5.6.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