Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
d971f40b
Commit
d971f40b
authored
Oct 25, 2016
by
David Barker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compile error with --enable-accounting
Change-Id: I4b18dbfb013c9805cb23083a68560ab212a0867a
parent
4b4e5eef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
av1/decoder/decodeframe.c
av1/decoder/decodeframe.c
+4
-4
No files found.
av1/decoder/decodeframe.c
View file @
d971f40b
...
...
@@ -2814,9 +2814,9 @@ static const uint8_t *decode_tiles(AV1Decoder *pbi, const uint8_t *data,
#endif
#if CONFIG_ACCOUNTING
if
(
pbi
->
acct_enabled
)
{
t
ile_data
->
bit_reader
.
accounting
=
&
pbi
->
accounting
;
t
d
->
bit_reader
.
accounting
=
&
pbi
->
accounting
;
}
else
{
t
ile_data
->
bit_reader
.
accounting
=
NULL
;
t
d
->
bit_reader
.
accounting
=
NULL
;
}
#endif
av1_init_macroblockd
(
cm
,
&
td
->
xd
,
td
->
dqcoeff
);
...
...
@@ -2839,8 +2839,8 @@ static const uint8_t *decode_tiles(AV1Decoder *pbi, const uint8_t *data,
TileData
*
const
td
=
pbi
->
tile_data
+
tile_cols
*
row
+
col
;
#if CONFIG_ACCOUNTING
if
(
pbi
->
acct_enabled
)
{
t
ile_data
->
bit_reader
.
accounting
->
last_tell_frac
=
aom_reader_tell_frac
(
&
t
ile_data
->
bit_reader
);
t
d
->
bit_reader
.
accounting
->
last_tell_frac
=
aom_reader_tell_frac
(
&
t
d
->
bit_reader
);
}
#endif
...
...
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