Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f76c3c6c
Commit
f76c3c6c
authored
Nov 23, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jxr: Fix some clang compiler warnings.
parent
13d2bb57
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
24 deletions
+20
-24
strPredQuantDec.c
libs/jxr/image/decode/strPredQuantDec.c
+2
-2
strenc.c
libs/jxr/image/encode/strenc.c
+1
-3
adapthuff.c
libs/jxr/image/sys/adapthuff.c
+1
-2
strcodec.c
libs/jxr/image/sys/strcodec.c
+6
-5
windowsmediaphoto.h
libs/jxr/image/sys/windowsmediaphoto.h
+6
-5
x86.h
libs/jxr/image/x86/x86.h
+2
-4
JXRGluePFC.c
libs/jxr/jxrgluelib/JXRGluePFC.c
+2
-3
No files found.
libs/jxr/image/decode/strPredQuantDec.c
View file @
f76c3c6c
...
...
@@ -70,7 +70,7 @@ Int dequantizeMacroblock(CWMImageStrCodec * pSC)
pSC
->
p1MBbuffer
[
i
][
0
]
=
DEQUANT
(
pMBInfo
->
iBlockDC
[
i
][
0
],
pTile
->
pQuantizerDC
[
i
]
->
iQP
);
// dequantize LP
if
(
pSC
->
WMISCP
.
sbSubband
!=
SB_DC_ONLY
)
if
(
pSC
->
WMISCP
.
sbSubband
!=
SB_DC_ONLY
)
{
if
(
i
==
0
||
(
cf
!=
YUV_422
&&
cf
!=
YUV_420
))
dequantizeBlock4x4
(
pSC
->
p1MBbuffer
[
i
]
,
pMBInfo
->
iBlockDC
[
i
],
dctIndex
[
2
],
pTile
->
pQuantizerLP
[
i
][
pMBInfo
->
iQIndexLP
].
iQP
);
else
if
(
cf
==
YUV_422
)
...
...
@@ -78,6 +78,7 @@ Int dequantizeMacroblock(CWMImageStrCodec * pSC)
else
// 420
dequantizeBlock2x2
(
pSC
->
p1MBbuffer
[
i
],
pMBInfo
->
iBlockDC
[
i
],
pTile
->
pQuantizerLP
[
i
][
pMBInfo
->
iQIndexLP
].
iQP
);
}
}
return
ICERR_OK
;
}
...
...
@@ -536,4 +537,3 @@ Void predCBPDec(CWMImageStrCodec *pSC, CCodingContext *pContext)
}
//}
}
libs/jxr/image/encode/strenc.c
View file @
f76c3c6c
...
...
@@ -1314,7 +1314,7 @@ static Void InitializeStrEnc(CWMImageStrCodec *pSC,
// set nExpBias
if
(
pSC
->
WMISCP
.
nExpBias
==
0
)
pSC
->
WMISCP
.
nExpBias
=
4
+
128
;
//default
pSC
->
WMISCP
.
nExpBias
=
(
I8
)(
4
+
128
)
;
//default
pSC
->
WMISCP
.
nExpBias
+=
128
;
// rollover arithmetic
pSC
->
cRow
=
0
;
...
...
@@ -2366,5 +2366,3 @@ Int inputMBRow(CWMImageStrCodec* pSC)
return
ICERR_OK
;
}
libs/jxr/image/sys/adapthuff.c
View file @
f76c3c6c
...
...
@@ -459,7 +459,7 @@ Void AdaptDiscriminant (CAdaptiveHuffman *pAdHuff)
assert
(
t
<
gMaxTables
[
iSym
]);
//pAdHuff->m_iDiscriminant >>= 1;
pAdHuff
->
m_iLowerBound
=
(
t
==
0
)
?
(
-
1
<<
31
)
:
-
THRESHOLD
;
pAdHuff
->
m_iLowerBound
=
(
t
==
0
)
?
(
1u
<<
31
)
:
-
THRESHOLD
;
pAdHuff
->
m_iUpperBound
=
(
t
==
gMaxTables
[
iSym
]
-
1
)
?
(
1
<<
30
)
:
THRESHOLD
;
switch
(
iSym
)
{
...
...
@@ -508,4 +508,3 @@ Void AdaptDiscriminant (CAdaptiveHuffman *pAdHuff)
pAdHuff
->
m_pTable
=
pCodes
;
pAdHuff
->
m_pDelta
=
pDelta
;
}
libs/jxr/image/sys/strcodec.c
View file @
f76c3c6c
...
...
@@ -818,20 +818,20 @@ Void freeTileInfo(CWMImageStrCodec * pSC)
else
freeQuantizer
(
pSC
->
pTile
[
0
].
pQuantizerDC
);
if
(
pSC
->
WMISCP
.
sbSubband
!=
SB_DC_ONLY
)
if
(
pSC
->
WMISCP
.
sbSubband
!=
SB_DC_ONLY
)
{
if
((
pSC
->
m_param
.
uQPMode
&
2
)
!=
0
)
// not LP uniform
for
(
iTile
=
0
;
iTile
<=
pSC
->
WMISCP
.
cNumOfSliceMinus1V
;
iTile
++
)
freeQuantizer
(
pSC
->
pTile
[
iTile
].
pQuantizerLP
);
else
freeQuantizer
(
pSC
->
pTile
[
0
].
pQuantizerLP
);
if
(
pSC
->
WMISCP
.
sbSubband
!=
SB_DC_ONLY
&&
pSC
->
WMISCP
.
sbSubband
!=
SB_NO_HIGHPASS
)
}
if
(
pSC
->
WMISCP
.
sbSubband
!=
SB_DC_ONLY
&&
pSC
->
WMISCP
.
sbSubband
!=
SB_NO_HIGHPASS
)
{
if
((
pSC
->
m_param
.
uQPMode
&
4
)
!=
0
)
// not HP uniform
for
(
iTile
=
0
;
iTile
<=
pSC
->
WMISCP
.
cNumOfSliceMinus1V
;
iTile
++
)
freeQuantizer
(
pSC
->
pTile
[
iTile
].
pQuantizerHP
);
else
freeQuantizer
(
pSC
->
pTile
[
0
].
pQuantizerHP
);
}
if
(
pSC
->
pTile
!=
NULL
)
free
(
pSC
->
pTile
);
}
...
...
@@ -864,11 +864,12 @@ Void formatQuantizer(CWMIQuantizer * pQuantizer[MAX_CHANNELS], U8 cChMode, size_
size_t
iCh
;
for
(
iCh
=
0
;
iCh
<
cCh
;
iCh
++
){
if
(
iCh
>
0
)
if
(
iCh
>
0
)
{
if
(
cChMode
==
0
)
// uniform
pQuantizer
[
iCh
][
iPos
]
=
pQuantizer
[
0
][
iPos
];
else
if
(
cChMode
==
1
)
// mixed
pQuantizer
[
iCh
][
iPos
]
=
pQuantizer
[
1
][
iPos
];
}
remapQP
(
pQuantizer
[
iCh
]
+
iPos
,
(
iCh
>
0
&&
bShiftedUV
==
TRUE
)
?
SHIFTZERO
-
1
:
SHIFTZERO
,
bScaledArith
);
}
}
...
...
libs/jxr/image/sys/windowsmediaphoto.h
View file @
f76c3c6c
...
...
@@ -257,20 +257,22 @@ typedef long ERR;
#define Report(err, szExp, szFile, lLine) err = err
#endif
#define Call(exp) \
#define Call(exp)
do {
\
if (Failed(err = (exp))) \
{ \
Report(err, #exp, __FILE__, (long)__LINE__); \
goto Cleanup; \
} \
else err = err
else err = err; \
} while(0)
#define CallIgnoreError(errTmp, exp) \
#define CallIgnoreError(errTmp, exp)
do {
\
if (Failed(errTmp = (exp))) \
{ \
Report(errTmp, #exp, __FILE__, (long)__LINE__); \
} \
else errTmp = errTmp
else errTmp = errTmp; \
} while(0)
#define Test(exp, err) Call((exp) ? WMP_errSuccess : (err))
...
...
@@ -512,4 +514,3 @@ EXTERN_C Int WMPhotoDetile(
);
#endif // WMI_WINDOWSMEDIAPHOTO_H
libs/jxr/image/x86/x86.h
View file @
f76c3c6c
...
...
@@ -36,10 +36,10 @@
#define PACKETLENGTH (1U<<12) // 4kB
#define readIS_L1(pSC, pIO) readIS(pSC, pIO)
#define readIS_L2(pSC, pIO) (
void)(pSC, pIO
)
#define readIS_L2(pSC, pIO) (
(void)(pSC), (void)(pIO)
)
#define writeIS_L1(pSC, pIO) writeIS(pSC, pIO)
#define writeIS_L2(pSC, pIO) (
void)(pSC, pIO
)
#define writeIS_L2(pSC, pIO) (
(void)(pSC), (void)(pIO)
)
//================================
...
...
@@ -54,5 +54,3 @@
// quantization optimization
//================================
#define RECIP_QUANT_OPT
libs/jxr/jxrgluelib/JXRGluePFC.c
View file @
f76c3c6c
...
...
@@ -56,9 +56,9 @@ static U32 Convert_Half_To_Float(U16 u16)
{
return
s
<<
31
;
}
else
if
(
~
(
~
0
<<
5
)
==
e
)
// inf, snan, qnan
else
if
(
~
(
~
0
u
<<
5
)
==
e
)
// inf, snan, qnan
{
return
(
s
<<
31
)
|
~
(
~
0
<<
8
)
<<
23
|
(
m
<<
13
);
return
(
s
<<
31
)
|
~
(
~
0
u
<<
8
)
<<
23
|
(
m
<<
13
);
}
return
(
s
<<
31
)
|
((
e
-
15
+
127
)
<<
23
)
|
(
m
<<
13
);
// norm
...
...
@@ -2335,4 +2335,3 @@ ERR PKFormatConverter_Release(PKFormatConverter** ppFC)
Cleanup:
return
err
;
}
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