Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
7e37993b
Commit
7e37993b
authored
Mar 02, 2017
by
Nathan E. Egge
Committed by
Nathan Egge
Mar 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug when indexing inspection mi_grid.
Change-Id: I9bee09b364223e776cd14ae4a3d47e0c3ffcf008
parent
d3f441c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
av1/decoder/inspection.c
av1/decoder/inspection.c
+1
-1
No files found.
av1/decoder/inspection.c
View file @
7e37993b
...
...
@@ -53,7 +53,7 @@ int ifd_inspect(insp_frame_data *fd, void *decoder) {
for
(
i
=
0
;
i
<
cm
->
mi_cols
;
i
++
)
{
const
MB_MODE_INFO
*
mbmi
=
&
cm
->
mi_grid_visible
[
j
*
cm
->
mi_stride
+
i
]
->
mbmi
;
insp_mi_data
*
mi
=
&
fd
->
mi_grid
[
j
*
cm
->
mi_cols
+
j
];
insp_mi_data
*
mi
=
&
fd
->
mi_grid
[
j
*
cm
->
mi_cols
+
i
];
// Segment
mi
->
segment_id
=
mbmi
->
segment_id
;
// Motion Vectors
...
...
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