Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
4bceeaf0
Commit
4bceeaf0
authored
Nov 08, 2011
by
shahriman AMS
Committed by
Anton Khirnov
Nov 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vc1dec: use correct hybrid prediction threshold.
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
4344ce08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
vc1dec.c
libavcodec/vc1dec.c
+1
-4
No files found.
libavcodec/vc1dec.c
View file @
4bceeaf0
...
...
@@ -1660,10 +1660,7 @@ static inline void vc1_pred_mv(VC1Context *v, int n, int dmv_x, int dmv_y,
if
(
!
v
->
field_mode
||
s
->
pict_type
!=
AV_PICTURE_TYPE_B
)
{
/* Calculate hybrid prediction as specified in 8.3.5.3.5 (also 10.3.5.4.3.5) */
if
(
v
->
field_mode
&&
!
s
->
quarter_sample
)
hybridmv_thresh
=
16
;
else
hybridmv_thresh
=
32
;
hybridmv_thresh
=
32
;
if
(
a_valid
&&
c_valid
)
{
if
(
is_intra
[
xy
-
wrap
])
sum
=
FFABS
(
px
)
+
FFABS
(
py
);
...
...
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