Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
56c9c3bf
Commit
56c9c3bf
authored
Aug 22, 2016
by
Alex Converse
Browse files
Fix ANS build.
Add a stub for the missing tell method. Change-Id: Ifd9eb7a9d7ad9da15aaa1393d66b1b53d6c7ca65
parent
5030fa58
Changes
1
Hide whitespace changes
Inline
Side-by-side
aom_dsp/bitreader.h
View file @
56c9c3bf
...
...
@@ -80,7 +80,11 @@ static INLINE int aom_reader_has_error(aom_reader *r) {
}
static
INLINE
ptrdiff_t
aom_reader_tell
(
const
aom_reader
*
r
)
{
#if CONFIG_DAALA_EC
#if CONFIG_ANS
(
void
)
r
;
assert
(
0
&&
"aom_reader_tell() is unimplemented for ANS"
);
return
0
;
#elif CONFIG_DAALA_EC
return
aom_daala_reader_tell
(
r
);
#else
return
aom_dk_reader_tell
(
r
);
...
...
Write
Preview
Supports
Markdown
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