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
8590bcc3
Commit
8590bcc3
authored
Nov 09, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indention
Originally committed as revision 10976 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
dfb32930
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
vc1.c
libavcodec/vc1.c
+9
-9
No files found.
libavcodec/vc1.c
View file @
8590bcc3
...
...
@@ -1234,17 +1234,17 @@ static int vc1_parse_frame_header(VC1Context *v, GetBitContext* gb)
break
;
}
if
(
!
v
->
x8_type
)
{
/* AC Syntax */
v
->
c_ac_table_index
=
decode012
(
gb
);
if
(
v
->
s
.
pict_type
==
I_TYPE
||
v
->
s
.
pict_type
==
BI_TYPE
)
if
(
!
v
->
x8_type
)
{
v
->
y_ac_table_index
=
decode012
(
gb
);
/* AC Syntax */
v
->
c_ac_table_index
=
decode012
(
gb
);
if
(
v
->
s
.
pict_type
==
I_TYPE
||
v
->
s
.
pict_type
==
BI_TYPE
)
{
v
->
y_ac_table_index
=
decode012
(
gb
);
}
/* DC Syntax */
v
->
s
.
dc_table_index
=
get_bits1
(
gb
);
}
/* DC Syntax */
v
->
s
.
dc_table_index
=
get_bits1
(
gb
);
}
if
(
v
->
s
.
pict_type
==
BI_TYPE
)
{
v
->
s
.
pict_type
=
B_TYPE
;
...
...
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