Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
7fb35ee9
Commit
7fb35ee9
authored
Oct 09, 2012
by
Mashiat Sarker Shakkhar
Committed by
Diego Biurrun
Oct 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vc1dec: Use correct spelling of "opposite"
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
706a559b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
vc1dec.c
libavcodec/vc1dec.c
+5
-5
No files found.
libavcodec/vc1dec.c
View file @
7fb35ee9
...
...
@@ -1349,7 +1349,7 @@ static inline void vc1_pred_mv(VC1Context *v, int n, int dmv_x, int dmv_y,
int
px
,
py
;
int
sum
;
int
mixedmv_pic
,
num_samefield
=
0
,
num_oppfield
=
0
;
int
opposit
,
a_f
,
b_f
,
c_f
;
int
opposit
e
,
a_f
,
b_f
,
c_f
;
int16_t
field_predA
[
2
];
int16_t
field_predB
[
2
];
int16_t
field_predC
[
2
];
...
...
@@ -1458,12 +1458,12 @@ static inline void vc1_pred_mv(VC1Context *v, int n, int dmv_x, int dmv_y,
if
(
v
->
field_mode
)
{
if
(
num_samefield
<=
num_oppfield
)
opposit
=
1
-
pred_flag
;
opposit
e
=
1
-
pred_flag
;
else
opposit
=
pred_flag
;
opposit
e
=
pred_flag
;
}
else
opposit
=
0
;
if
(
opposit
)
{
opposit
e
=
0
;
if
(
opposit
e
)
{
if
(
a_valid
&&
!
a_f
)
{
field_predA
[
0
]
=
scaleforopp
(
v
,
field_predA
[
0
],
0
,
dir
);
field_predA
[
1
]
=
scaleforopp
(
v
,
field_predA
[
1
],
1
,
dir
);
...
...
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