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
af5e7fc9
Commit
af5e7fc9
authored
Dec 11, 2008
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use dsp clear_block
Originally committed as revision 16048 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a1546009
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
dnxhddec.c
libavcodec/dnxhddec.c
+1
-3
No files found.
libavcodec/dnxhddec.c
View file @
af5e7fc9
...
...
@@ -219,14 +219,12 @@ static int dnxhd_decode_macroblock(DNXHDContext *ctx, int x, int y)
int
dct_offset
;
int
qscale
,
i
;
ctx
->
dsp
.
clear_blocks
(
ctx
->
blocks
[
0
]);
ctx
->
dsp
.
clear_blocks
(
ctx
->
blocks
[
2
]);
// FIXME change clear blocks to take block amount
qscale
=
get_bits
(
&
ctx
->
gb
,
11
);
skip_bits1
(
&
ctx
->
gb
);
//av_log(ctx->avctx, AV_LOG_DEBUG, "qscale %d\n", qscale);
for
(
i
=
0
;
i
<
8
;
i
++
)
{
ctx
->
dsp
.
clear_block
(
ctx
->
blocks
[
i
]);
dnxhd_decode_dct_block
(
ctx
,
ctx
->
blocks
[
i
],
i
,
qscale
);
}
...
...
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