Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
libaec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mathis Rosenhauer
libaec
Commits
46463e01
Commit
46463e01
authored
1 year ago
by
Eugen Betke
Committed by
Mathis Rosenhauer
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Grab correct offsets when encoding
parent
54290861
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!5
Grab correct offsets when encoding
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/encode.c
+15
-9
15 additions, 9 deletions
src/encode.c
src/encode.h
+4
-0
4 additions, 0 deletions
src/encode.h
tests/check_rsi_block_access.c
+12
-5
12 additions, 5 deletions
tests/check_rsi_block_access.c
with
31 additions
and
14 deletions
src/encode.c
+
15
−
9
View file @
46463e01
...
...
@@ -478,11 +478,10 @@ static int m_flush_block(struct aec_stream *strm)
struct
internal_state
*
state
=
strm
->
state
;
#ifdef ENABLE_RSI_PADDING
if
(
state
->
blocks_avail
==
0
&&
strm
->
flags
&
AEC_PAD_RSI
&&
state
->
block_nonzero
==
0
)
emit
(
state
,
0
,
state
->
bits
%
8
);
if
(
state
->
blocks_avail
==
0
&&
strm
->
flags
&
AEC_PAD_RSI
&&
state
->
block_nonzero
==
0
)
emit
(
state
,
0
,
state
->
bits
%
8
);
#endif
if
(
state
->
direct_out
)
{
...
...
@@ -490,6 +489,14 @@ static int m_flush_block(struct aec_stream *strm)
strm
->
next_out
+=
n
;
strm
->
avail_out
-=
n
;
state
->
mode
=
m_get_block
;
if
(
state
->
ready_to_capture_rsi
&&
state
->
blocks_avail
==
0
&&
state
->
offsets
!=
NULL
)
{
vector_push_back
(
state
->
offsets
,
(
strm
->
total_out
-
strm
->
avail_out
)
*
8
+
(
8
-
state
->
bits
));
state
->
ready_to_capture_rsi
=
0
;
}
return
M_CONTINUE
;
}
...
...
@@ -711,9 +718,7 @@ static int m_get_block(struct aec_stream *strm)
state
->
block
=
state
->
data_pp
;
state
->
blocks_dispensed
=
1
;
if
(
strm
->
avail_in
>=
state
->
rsi_len
)
{
if
(
state
->
offsets
!=
NULL
)
vector_push_back
(
state
->
offsets
,
(
strm
->
total_out
-
strm
->
avail_out
)
*
8
+
(
8
-
state
->
bits
));
state
->
ready_to_capture_rsi
=
1
;
state
->
get_rsi
(
strm
);
if
(
strm
->
flags
&
AEC_DATA_PREPROCESS
)
state
->
preprocess
(
strm
);
...
...
@@ -885,8 +890,8 @@ int aec_encode_init(struct aec_stream *strm)
*
state
->
cds
=
0
;
state
->
bits
=
8
;
state
->
mode
=
m_get_block
;
struct
vector_t
*
offsets
=
NULL
;
state
->
ready_to_capture_rsi
=
0
;
return
AEC_OK
;
}
...
...
@@ -966,6 +971,7 @@ int aec_encode_enable_offsets(struct aec_stream *strm)
return
AEC_RSI_OFFSETS_ERROR
;
state
->
offsets
=
vector_create
();
vector_push_back
(
state
->
offsets
,
0
);
return
AEC_OK
;
}
...
...
This diff is collapsed.
Click to expand it.
src/encode.h
+
4
−
0
View file @
46463e01
...
...
@@ -142,7 +142,11 @@ struct internal_state {
/* length of uncompressed CDS */
uint32_t
uncomp_len
;
/* RSI offsets container */
struct
vector_t
*
offsets
;
/* indicator if an RSI should be captured */
int
ready_to_capture_rsi
;
};
#endif
/* ENCODE_H */
This diff is collapsed.
Click to expand it.
tests/check_rsi_block_access.c
+
12
−
5
View file @
46463e01
#include
"check_aec.h"
#include
<stdio.h>
#include
<stdlib.h>
#include
<string.h>
...
...
@@ -399,11 +398,19 @@ int test_offsets(struct aec_context *ctx)
size_t
*
encode_offsets_ptr
;
size_t
encode_offsets_size
;
PREPARE_ENCODE_WITH_OFFSETS
(
&
strm1
,
ctx
,
flags
,
encode_offsets_ptr
,
&
encode_offsets_size
);
assert
(
encode_offsets_size
>
0
);
struct
aec_stream
strm2
;
size_t
*
decode_offsets_ptr
;
size_t
decode_offsets_size
;
PREPARE_DECODE_WITH_OFFSETS
(
&
strm2
,
ctx
,
flags
,
decode_offsets_ptr
,
&
decode_offsets_size
);
assert
(
decode_offsets_size
>
0
);
if
(
encode_offsets_size
!=
decode_offsets_size
)
{
fprintf
(
stderr
,
"Error: encode_offsets_size = %zu, decode_offsets_size = %zu
\n
"
,
encode_offsets_size
,
decode_offsets_size
);
return
102
;
}
size_t
size
=
decode_offsets_size
>
10
?
10
:
decode_offsets_size
;
for
(
size_t
i
=
0
;
i
<
encode_offsets_size
;
++
i
)
{
...
...
@@ -421,10 +428,10 @@ int test_offsets(struct aec_context *ctx)
int
main
(
void
)
{
int
status
=
AEC_OK
;
size_t
ns
[]
=
{
1
,
255
,
256
,
255
*
10
,
256
*
10
,
67000
};
size_t
rsis
[]
=
{
1
,
2
,
255
,
256
,
512
,
1024
,
4095
,
4096
};
size_t
bss
[]
=
{
8
,
16
,
32
,
64
};
size_t
bpss
[]
=
{
1
,
7
,
8
,
9
,
15
,
16
,
17
,
23
,
24
,
25
,
31
,
32
};
size_t
ns
[]
=
{
1
,
255
,
256
,
255
*
10
,
256
*
10
,
67000
};
// number of samples
size_t
rsis
[]
=
{
1
,
2
,
255
,
256
,
512
,
1024
,
4095
,
4096
};
// RSI size
size_t
bss
[]
=
{
8
,
16
,
32
,
64
};
// block size
size_t
bpss
[]
=
{
1
,
7
,
8
,
9
,
15
,
16
,
17
,
23
,
24
,
25
,
31
,
32
};
// bits per sample
data_generator_t
data_generators
[]
=
{
data_generator_zero
,
data_generator_random
,
data_generator_incr
};
for
(
size_t
n_i
=
0
;
n_i
<
sizeof
(
ns
)
/
sizeof
(
ns
[
0
]);
++
n_i
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment