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
e2720b6b
Commit
e2720b6b
authored
Mar 04, 2010
by
David Conrad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Really fix 2.95
Originally committed as revision 22204 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0448ef77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vp3.c
libavcodec/vp3.c
+2
-1
No files found.
libavcodec/vp3.c
View file @
e2720b6b
...
@@ -456,6 +456,7 @@ static void init_loop_filter(Vp3DecodeContext *s)
...
@@ -456,6 +456,7 @@ static void init_loop_filter(Vp3DecodeContext *s)
*/
*/
static
int
unpack_superblocks
(
Vp3DecodeContext
*
s
,
GetBitContext
*
gb
)
static
int
unpack_superblocks
(
Vp3DecodeContext
*
s
,
GetBitContext
*
gb
)
{
{
int
superblock_starts
[
3
]
=
{
0
,
s
->
u_superblock_start
,
s
->
v_superblock_start
};
int
bit
=
0
;
int
bit
=
0
;
int
current_superblock
=
0
;
int
current_superblock
=
0
;
int
current_run
=
0
;
int
current_run
=
0
;
...
@@ -547,7 +548,7 @@ static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb)
...
@@ -547,7 +548,7 @@ static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb)
memset
(
s
->
macroblock_coding
,
MODE_COPY
,
s
->
macroblock_count
);
memset
(
s
->
macroblock_coding
,
MODE_COPY
,
s
->
macroblock_count
);
for
(
plane
=
0
;
plane
<
3
;
plane
++
)
{
for
(
plane
=
0
;
plane
<
3
;
plane
++
)
{
int
sb_start
=
(
int
[
3
]){
0
,
s
->
u_superblock_start
,
s
->
v_superblock_start
}
[
plane
];
int
sb_start
=
superblock_starts
[
plane
];
int
sb_end
=
sb_start
+
(
plane
?
s
->
c_superblock_count
:
s
->
y_superblock_count
);
int
sb_end
=
sb_start
+
(
plane
?
s
->
c_superblock_count
:
s
->
y_superblock_count
);
int
num_coded_frags
=
0
;
int
num_coded_frags
=
0
;
...
...
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