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
dd2111bd
Commit
dd2111bd
authored
Nov 09, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indention
Originally committed as revision 10977 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8590bcc3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
vc1.c
libavcodec/vc1.c
+19
-19
No files found.
libavcodec/vc1.c
View file @
dd2111bd
...
...
@@ -3762,29 +3762,29 @@ static void vc1_decode_blocks(VC1Context *v)
ff_intrax8_decode_picture
(
&
v
->
x8
,
2
*
v
->
pq
+
v
->
halfpq
,
v
->
pq
*
(
!
v
->
pquantizer
)
);
}
else
switch
(
v
->
s
.
pict_type
)
{
case
I_TYPE
:
if
(
v
->
profile
==
PROFILE_ADVANCED
)
vc1_decode_i_blocks_adv
(
v
);
else
vc1_decode_i_blocks
(
v
);
break
;
case
P_TYPE
:
if
(
v
->
p_frame_skipped
)
vc1_decode_skip_blocks
(
v
);
else
vc1_decode_p_blocks
(
v
);
break
;
case
B_TYPE
:
if
(
v
->
bi_type
){
switch
(
v
->
s
.
pict_type
)
{
case
I_TYPE
:
if
(
v
->
profile
==
PROFILE_ADVANCED
)
vc1_decode_i_blocks_adv
(
v
);
else
vc1_decode_i_blocks
(
v
);
}
else
vc1_decode_b_blocks
(
v
);
break
;
}
break
;
case
P_TYPE
:
if
(
v
->
p_frame_skipped
)
vc1_decode_skip_blocks
(
v
);
else
vc1_decode_p_blocks
(
v
);
break
;
case
B_TYPE
:
if
(
v
->
bi_type
){
if
(
v
->
profile
==
PROFILE_ADVANCED
)
vc1_decode_i_blocks_adv
(
v
);
else
vc1_decode_i_blocks
(
v
);
}
else
vc1_decode_b_blocks
(
v
);
break
;
}
}
/** Find VC-1 marker in buffer
...
...
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