Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
libaec
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Mathis Rosenhauer
libaec
Commits
4f10cb84
Commit
4f10cb84
authored
Aug 31, 2018
by
Mathis Rosenhauer
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'schwehr-remove-have-stdint-h'
parents
cfa5bb95
3093d148
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
15 deletions
+4
-15
CMakeLists.txt
CMakeLists.txt
+0
-1
cmake/config.h.in
cmake/config.h.in
+0
-1
src/decode.h
src/decode.h
+1
-3
src/encode.h
src/encode.h
+1
-3
src/encode_accessors.c
src/encode_accessors.c
+1
-4
src/encode_accessors.h
src/encode_accessors.h
+1
-3
No files found.
CMakeLists.txt
View file @
4f10cb84
...
...
@@ -20,7 +20,6 @@ set(CMAKE_BUILD_TYPE Release)
enable_testing
()
check_include_files
(
malloc.h HAVE_MALLOC_H
)
check_include_files
(
stdint.h HAVE_STDINT_H
)
test_big_endian
(
WORDS_BIGENDIAN
)
check_clzll
(
HAVE_DECL___BUILTIN_CLZLL
)
if
(
NOT HAVE_DECL___BUILTIN_CLZLL
)
...
...
cmake/config.h.in
View file @
4f10cb84
#cmakedefine HAVE_MALLOC_H 1
#cmakedefine HAVE_STDINT_H 1
#cmakedefine WORDS_BIGENDIAN 1
#cmakedefine HAVE_DECL___BUILTIN_CLZLL 1
#cmakedefine HAVE_BSR64 1
...
...
src/decode.h
View file @
4f10cb84
...
...
@@ -53,9 +53,7 @@
#include <config.h>
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdint.h>
#define M_CONTINUE 1
#define M_EXIT 0
...
...
src/encode.h
View file @
4f10cb84
...
...
@@ -53,9 +53,7 @@
#include <config.h>
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdint.h>
#define M_CONTINUE 1
#define M_EXIT 0
...
...
src/encode_accessors.c
View file @
4f10cb84
...
...
@@ -49,10 +49,7 @@
#include <config.h>
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdint.h>
#include <string.h>
#include "libaec.h"
#include "encode.h"
...
...
src/encode_accessors.h
View file @
4f10cb84
...
...
@@ -52,9 +52,7 @@
#include "config.h"
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdint.h>
uint32_t
aec_get_8
(
struct
aec_stream
*
strm
);
uint32_t
aec_get_lsb_16
(
struct
aec_stream
*
strm
);
...
...
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