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
3ba40ebb
Commit
3ba40ebb
authored
Mar 06, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ivi_common: do not call MC for intra frames when dc_transform is unset
CC:libav-stable@libav.org
parent
3e2f2002
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
ivi_common.c
libavcodec/ivi_common.c
+4
-3
No files found.
libavcodec/ivi_common.c
View file @
3ba40ebb
...
...
@@ -527,9 +527,10 @@ static int ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile
/* block not coded */
/* for intra blocks apply the dc slant transform */
/* for inter - perform the motion compensation without delta */
if
(
is_intra
&&
band
->
dc_transform
)
{
band
->
dc_transform
(
&
prev_dc
,
band
->
buf
+
buf_offs
,
band
->
pitch
,
blk_size
);
if
(
is_intra
)
{
if
(
band
->
dc_transform
)
band
->
dc_transform
(
&
prev_dc
,
band
->
buf
+
buf_offs
,
band
->
pitch
,
blk_size
);
}
else
mc_no_delta_func
(
band
->
buf
+
buf_offs
,
band
->
ref_buf
+
buf_offs
+
mv_y
*
band
->
pitch
+
mv_x
,
...
...
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