Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
a0f078d9
Commit
a0f078d9
authored
Oct 01, 2014
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor changes to avoid errors and warnings in visual studio.
parent
9c8188ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
jchuff.cpp
dlib/external/libjpeg/jchuff.cpp
+2
-2
jcphuff.cpp
dlib/external/libjpeg/jcphuff.cpp
+2
-2
No files found.
dlib/external/libjpeg/jchuff.cpp
View file @
a0f078d9
...
...
@@ -297,7 +297,7 @@ dump_buffer (working_state * state)
* between calls, so 24 bits are sufficient.
*/
INLINE
inline
LOCAL
(
int
)
emit_bits
(
working_state
*
state
,
unsigned
int
code
,
int
size
)
/* Emit some bits; return TRUE if successful, FALSE if must suspend */
...
...
@@ -827,7 +827,7 @@ jpeg_gen_optimal_table (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[])
for
(
i
=
1
;
i
<=
MAX_CLEN
;
i
++
)
{
for
(
j
=
0
;
j
<=
255
;
j
++
)
{
if
(
codesize
[
j
]
==
i
)
{
htbl
->
huffval
[
p
]
=
(
unsigned
short
)
j
;
htbl
->
huffval
[
p
]
=
(
unsigned
char
)
j
;
p
++
;
}
}
...
...
dlib/external/libjpeg/jcphuff.cpp
View file @
a0f078d9
...
...
@@ -223,7 +223,7 @@ dump_buffer (phuff_entropy_ptr entropy)
* between calls, so 24 bits are sufficient.
*/
INLINE
inline
LOCAL
(
void
)
emit_bits
(
phuff_entropy_ptr
entropy
,
unsigned
int
code
,
int
size
)
/* Emit some bits, unless we are in gather mode */
...
...
@@ -276,7 +276,7 @@ flush_bits (phuff_entropy_ptr entropy)
* Emit (or just count) a Huffman symbol.
*/
INLINE
inline
LOCAL
(
void
)
emit_symbol
(
phuff_entropy_ptr
entropy
,
int
tbl_no
,
int
symbol
)
{
...
...
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