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
Xiph.Org
aom-rav1e
Commits
7957ae1c
Commit
7957ae1c
authored
Dec 06, 2017
by
Debargha Mukherjee
Browse files
Removing assert that is incompatible with delta-q
BUG=aomedia:1065 Change-Id: I35eda84e249fc42e319604079c122df8ab101f90
parent
4c98733e
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/encodemb.c
View file @
7957ae1c
...
@@ -433,7 +433,6 @@ int av1_optimize_b(const AV1_COMMON *cm, MACROBLOCK *mb, int plane, int blk_row,
...
@@ -433,7 +433,6 @@ int av1_optimize_b(const AV1_COMMON *cm, MACROBLOCK *mb, int plane, int blk_row,
MACROBLOCKD
*
const
xd
=
&
mb
->
e_mbd
;
MACROBLOCKD
*
const
xd
=
&
mb
->
e_mbd
;
struct
macroblock_plane
*
const
p
=
&
mb
->
plane
[
plane
];
struct
macroblock_plane
*
const
p
=
&
mb
->
plane
[
plane
];
const
int
eob
=
p
->
eobs
[
block
];
const
int
eob
=
p
->
eobs
[
block
];
assert
((
mb
->
qindex
==
0
)
^
(
xd
->
lossless
[
xd
->
mi
[
0
]
->
mbmi
.
segment_id
]
==
0
));
if
(
eob
==
0
||
!
mb
->
optimize
||
xd
->
lossless
[
xd
->
mi
[
0
]
->
mbmi
.
segment_id
])
if
(
eob
==
0
||
!
mb
->
optimize
||
xd
->
lossless
[
xd
->
mi
[
0
]
->
mbmi
.
segment_id
])
return
eob
;
return
eob
;
...
...
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