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
Merge requests
!3
Rsi block access
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Rsi block access
k202107/libaec:rsi_block_access
into
master
Overview
4
Commits
3
Changes
15
Merged
eugen.betke
requested to merge
k202107/libaec:rsi_block_access
into
master
1 year ago
Overview
4
Commits
3
Changes
15
Expand
Efficient data access by accessing individual RSIs.
0
0
Merge request reports
Compare
master
version 6
5ecbfd57
1 year ago
version 5
5b1ebbd3
1 year ago
version 4
9c3f43a6
1 year ago
version 3
bb17277c
1 year ago
version 2
5ae1e63c
1 year ago
version 1
6b16b102
1 year ago
master (base)
and
latest version
latest version
a7a69277
3 commits,
1 year ago
version 6
5ecbfd57
3 commits,
1 year ago
version 5
5b1ebbd3
9 commits,
1 year ago
version 4
9c3f43a6
27 commits,
1 year ago
version 3
bb17277c
26 commits,
1 year ago
version 2
5ae1e63c
15 commits,
1 year ago
version 1
6b16b102
14 commits,
1 year ago
15 files
+
1123
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
include/libaec.h.in
+
9
−
0
Options
@@ -126,6 +126,7 @@ struct aec_stream {
#define AEC_STREAM_ERROR (-2)
#define AEC_DATA_ERROR (-3)
#define AEC_MEM_ERROR (-4)
#define AEC_RSI_OFFSETS_ERROR (-5)
/************************/
/* Options for flushing */
@@ -148,11 +149,19 @@ struct aec_stream {
/* Streaming encoding and decoding functions */
/*********************************************/
LIBAEC_DLL_EXPORTED int aec_encode_init(struct aec_stream *strm);
LIBAEC_DLL_EXPORTED int aec_encode_enable_offsets(struct aec_stream *strm);
LIBAEC_DLL_EXPORTED int aec_encode_count_offsets(struct aec_stream *strm, size_t *rsi_offsets_count);
LIBAEC_DLL_EXPORTED int aec_encode_get_offsets(struct aec_stream *strm, size_t *rsi_offsets, size_t rsi_offsets_count);
LIBAEC_DLL_EXPORTED int aec_buffer_seek(struct aec_stream *strm, size_t offset);
LIBAEC_DLL_EXPORTED int aec_encode(struct aec_stream *strm, int flush);
LIBAEC_DLL_EXPORTED int aec_encode_end(struct aec_stream *strm);
LIBAEC_DLL_EXPORTED int aec_decode_init(struct aec_stream *strm);
LIBAEC_DLL_EXPORTED int aec_decode_enable_offsets(struct aec_stream *strm);
LIBAEC_DLL_EXPORTED int aec_decode_count_offsets(struct aec_stream *strm, size_t *rsi_offsets_count);
LIBAEC_DLL_EXPORTED int aec_decode_get_offsets(struct aec_stream *strm, size_t *rsi_offsets, size_t rsi_offsets_count);
LIBAEC_DLL_EXPORTED int aec_decode(struct aec_stream *strm, int flush);
LIBAEC_DLL_EXPORTED int aec_decode_range(struct aec_stream *strm, const size_t *rsi_offsets, size_t rsi_offsets_count, size_t pos, size_t size);
LIBAEC_DLL_EXPORTED int aec_decode_end(struct aec_stream *strm);
/***************************************************************/
Loading