Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
91036996
Commit
91036996
authored
Apr 04, 2011
by
John Koleszar
Committed by
Code Review
Apr 04, 2011
Browse files
Merge "Slightly simplify vp8_decode_mb_tokens."
parents
610dd902
15f03c2f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vp8/decoder/detokenize.c
vp8/decoder/detokenize.c
+4
-4
No files found.
vp8/decoder/detokenize.c
100644 → 100755
View file @
91036996
...
...
@@ -181,7 +181,7 @@ int vp8_decode_mb_tokens(VP8D_COMP *dx, MACROBLOCKD *x)
{
ENTROPY_CONTEXT
*
A
=
(
ENTROPY_CONTEXT
*
)
x
->
above_context
;
ENTROPY_CONTEXT
*
L
=
(
ENTROPY_CONTEXT
*
)
x
->
left_context
;
const
VP8_COMMON
*
const
o
c
=
&
dx
->
common
;
const
FRAME_CONTEXT
*
const
f
c
=
&
dx
->
common
.
fc
;
BOOL_DECODER
*
bc
=
x
->
current_bc
;
...
...
@@ -236,7 +236,7 @@ int vp8_decode_mb_tokens(VP8D_COMP *dx, MACROBLOCKD *x)
range
=
bc
->
range
;
coef_probs
=
o
c
->
fc
.
coef_probs
[
type
]
[
0
]
[
0
];
coef_probs
=
f
c
->
coef_probs
[
type
]
[
0
]
[
0
];
BLOCK_LOOP:
a
=
A
+
vp8_block2above
[
i
];
...
...
@@ -348,7 +348,7 @@ BLOCK_FINISHED:
type
=
0
;
i
=
0
;
stop
=
16
;
coef_probs
=
o
c
->
fc
.
coef_probs
[
type
]
[
0
]
[
0
];
coef_probs
=
f
c
->
coef_probs
[
type
]
[
0
]
[
0
];
qcoeff_ptr
-=
(
24
*
16
+
16
);
goto
BLOCK_LOOP
;
}
...
...
@@ -356,7 +356,7 @@ BLOCK_FINISHED:
if
(
i
==
16
)
{
type
=
2
;
coef_probs
=
o
c
->
fc
.
coef_probs
[
type
]
[
0
]
[
0
];
coef_probs
=
f
c
->
coef_probs
[
type
]
[
0
]
[
0
];
stop
=
24
;
goto
BLOCK_LOOP
;
}
...
...
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