Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mathis Rosenhauer
libaec
Commits
c1cc9010
Commit
c1cc9010
authored
Nov 28, 2012
by
Mathis Rosenhauer
Committed by
Thomas Jahns
Feb 19, 2013
Browse files
Less CPP abuse
parent
fabc1b26
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/decode.c
View file @
c1cc9010
...
@@ -70,7 +70,7 @@
...
@@ -70,7 +70,7 @@
#define BUFFERSPACE(strm) (strm->avail_in >= strm->state->in_blklen \
#define BUFFERSPACE(strm) (strm->avail_in >= strm->state->in_blklen \
&& strm->avail_out >= strm->state->out_blklen)
&& strm->avail_out >= strm->state->out_blklen)
#define FLUSH(KIND
, PUTBLOCK)
\
#define FLUSH(KIND
)
\
static void flush_##KIND(struct aec_stream *strm) \
static void flush_##KIND(struct aec_stream *strm) \
{ \
{ \
int i; \
int i; \
...
@@ -87,9 +87,7 @@
...
@@ -87,9 +87,7 @@
/* Reference samples have to be sign extended */
\
/* Reference samples have to be sign extended */
\
state->last_out = (state->last_out ^ m) - m; \
state->last_out = (state->last_out ^ m) - m; \
} \
} \
\
put_##KIND(strm, state->last_out); \
data = state->last_out; \
PUTBLOCK; \
state->flush_start = 1; \
state->flush_start = 1; \
} \
} \
\
\
...
@@ -112,13 +110,11 @@
...
@@ -112,13 +110,11 @@
} \
} \
data = x + D; \
data = x + D; \
state->last_out = data; \
state->last_out = data; \
PUTBLOCK;
\
put_##KIND(strm, data);
\
} \
} \
} else { \
} else { \
for (i = state->flush_start; i < state->buf_i; i++) { \
for (i = state->flush_start; i < state->buf_i; i++) \
data = state->buf[i]; \
put_##KIND(strm, state->buf[i]); \
PUTBLOCK; \
} \
} \
} \
if (state->buf_i == state->buf_size) { \
if (state->buf_i == state->buf_size) { \
state->flush_start = 0; \
state->flush_start = 0; \
...
@@ -127,57 +123,61 @@
...
@@ -127,57 +123,61 @@
} \
} \
}
}
FLUSH
(
msb_32
,
do
{
static
inline
void
put_msb_32
(
struct
aec_stream
*
strm
,
uint32_t
data
)
*
strm
->
next_out
++
=
data
>>
24
;
{
*
strm
->
next_out
++
=
data
>>
16
;
*
strm
->
next_out
++
=
data
>>
24
;
*
strm
->
next_out
++
=
data
>>
8
;
*
strm
->
next_out
++
=
data
>>
16
;
*
strm
->
next_out
++
=
data
;
*
strm
->
next_out
++
=
data
>>
8
;
}
while
(
0
)
*
strm
->
next_out
++
=
data
;
)
}
FLUSH
(
msb_24
,
static
inline
void
put_msb_24
(
struct
aec_stream
*
strm
,
uint32_t
data
)
do
{
{
*
strm
->
next_out
++
=
data
>>
16
;
*
strm
->
next_out
++
=
data
>>
16
;
*
strm
->
next_out
++
=
data
>>
8
;
*
strm
->
next_out
++
=
data
>>
8
;
*
strm
->
next_out
++
=
data
;
*
strm
->
next_out
++
=
data
;
}
while
(
0
)
}
)
static
inline
void
put_msb_16
(
struct
aec_stream
*
strm
,
uint32_t
data
)
FLUSH
(
msb_16
,
{
do
{
*
strm
->
next_out
++
=
data
>>
8
;
*
strm
->
next_out
++
=
data
>>
8
;
*
strm
->
next_out
++
=
data
;
*
strm
->
next_out
++
=
data
;
}
}
while
(
0
)
)
static
inline
void
put_lsb_32
(
struct
aec_stream
*
strm
,
uint32_t
data
)
{
FLUSH
(
lsb_32
,
*
strm
->
next_out
++
=
data
;
do
{
*
strm
->
next_out
++
=
data
>>
8
;
*
strm
->
next_out
++
=
data
;
*
strm
->
next_out
++
=
data
>>
16
;
*
strm
->
next_out
++
=
data
>>
8
;
*
strm
->
next_out
++
=
data
>>
24
;
*
strm
->
next_out
++
=
data
>>
16
;
}
*
strm
->
next_out
++
=
data
>>
24
;
}
while
(
0
)
static
inline
void
put_lsb_24
(
struct
aec_stream
*
strm
,
uint32_t
data
)
)
{
*
strm
->
next_out
++
=
data
;
FLUSH
(
lsb_24
,
*
strm
->
next_out
++
=
data
>>
8
;
do
{
*
strm
->
next_out
++
=
data
>>
16
;
*
strm
->
next_out
++
=
data
;
}
*
strm
->
next_out
++
=
data
>>
8
;
*
strm
->
next_out
++
=
data
>>
16
;
static
inline
void
put_lsb_16
(
struct
aec_stream
*
strm
,
uint32_t
data
)
}
while
(
0
)
{
)
*
strm
->
next_out
++
=
data
;
*
strm
->
next_out
++
=
data
>>
8
;
FLUSH
(
lsb_16
,
}
do
{
*
strm
->
next_out
++
=
data
;
static
inline
void
put_8
(
struct
aec_stream
*
strm
,
uint32_t
data
)
*
strm
->
next_out
++
=
data
>>
8
;
{
}
while
(
0
)
*
strm
->
next_out
++
=
data
;
)
}
FLUSH
(
8
,
FLUSH
(
msb_32
);
*
strm
->
next_out
++
=
data
;
FLUSH
(
msb_24
);
)
FLUSH
(
msb_16
);
FLUSH
(
lsb_32
);
FLUSH
(
lsb_24
);
FLUSH
(
lsb_16
);
FLUSH
(
8
);
static
inline
void
put_sample
(
struct
aec_stream
*
strm
,
uint32_t
s
)
static
inline
void
put_sample
(
struct
aec_stream
*
strm
,
uint32_t
s
)
{
{
...
...
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