Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
libaec
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Mathis Rosenhauer
libaec
Commits
2b8256df
Commit
2b8256df
authored
Aug 31, 2018
by
Mathis Rosenhauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reorder includes
parent
4f10cb84
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
28 additions
and
31 deletions
+28
-31
src/aec.c
src/aec.c
+2
-2
src/decode.c
src/decode.c
+4
-4
src/decode.h
src/decode.h
+2
-2
src/encode.c
src/encode.c
+4
-4
src/encode.h
src/encode.h
+1
-2
src/encode_accessors.c
src/encode_accessors.c
+4
-5
src/encode_accessors.h
src/encode_accessors.h
+1
-1
src/sz_compat.c
src/sz_compat.c
+2
-4
src/szlib.h
src/szlib.h
+8
-7
No files found.
src/aec.c
View file @
2b8256df
...
...
@@ -47,12 +47,12 @@
*
*/
#include "config.h"
#include "libaec.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libaec.h"
#define CHUNK 10485760
int
get_param
(
unsigned
int
*
param
,
int
*
iarg
,
char
*
argv
[])
...
...
src/decode.c
View file @
2b8256df
...
...
@@ -48,15 +48,15 @@
*
*/
#include "config.h"
#include "decode.h"
#include "libaec.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "decode.h"
#include "libaec.h"
#if HAVE_BSR64
#
include <intrin.h>
#include <intrin.h>
#endif
#define ROS 5
...
...
src/decode.h
View file @
2b8256df
...
...
@@ -51,9 +51,9 @@
#ifndef DECODE_H
#define DECODE_H 1
#include <config.h>
#include "config.h"
#include <stdint.h>
#include <stddef.h>
#define M_CONTINUE 1
#define M_EXIT 0
...
...
src/encode.c
View file @
2b8256df
...
...
@@ -48,13 +48,13 @@
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "encode.h"
#include "encode_accessors.h"
#include "libaec.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static
int
m_get_block
(
struct
aec_stream
*
strm
);
...
...
src/encode.h
View file @
2b8256df
...
...
@@ -51,8 +51,7 @@
#ifndef ENCODE_H
#define ENCODE_H 1
#include <config.h>
#include "config.h"
#include <stdint.h>
#define M_CONTINUE 1
...
...
src/encode_accessors.c
View file @
2b8256df
...
...
@@ -47,13 +47,12 @@
*
*/
#include <config.h>
#include "config.h"
#include "encode_accessors.h"
#include "encode.h"
#include "libaec.h"
#include <stdint.h>
#include <string.h>
#include "libaec.h"
#include "encode.h"
#include "encode_accessors.h"
uint32_t
aec_get_8
(
struct
aec_stream
*
strm
)
{
...
...
src/encode_accessors.h
View file @
2b8256df
...
...
@@ -51,7 +51,7 @@
#define ENCODE_ACCESSORS_H 1
#include "config.h"
#include "libaec.h"
#include <stdint.h>
uint32_t
aec_get_8
(
struct
aec_stream
*
strm
);
...
...
src/sz_compat.c
View file @
2b8256df
#include "config.h"
#include "szlib.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include "szlib.h"
#define NOPTS 129
#define MIN(a, b) (((a) < (b))? (a): (b))
...
...
src/szlib.h
View file @
2b8256df
#ifndef SZLIB_H
#define SZLIB_H 1
#include "config.h"
#include "libaec.h"
#define SZ_ALLOW_K13_OPTION_MASK
1
#define SZ_CHIP_OPTION_MASK
2
#define SZ_EC_OPTION_MASK
4
#define SZ_LSB_OPTION_MASK
8
#define SZ_MSB_OPTION_MASK
16
#define SZ_NN_OPTION_MASK
32
#define SZ_RAW_OPTION_MASK
128
#define SZ_ALLOW_K13_OPTION_MASK 1
#define SZ_CHIP_OPTION_MASK 2
#define SZ_EC_OPTION_MASK 4
#define SZ_LSB_OPTION_MASK 8
#define SZ_MSB_OPTION_MASK 16
#define SZ_NN_OPTION_MASK 32
#define SZ_RAW_OPTION_MASK 128
#define SZ_OK AEC_OK
#define SZ_OUTBUFF_FULL 2
...
...
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