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
10f69158
Commit
10f69158
authored
Oct 26, 2010
by
Jason Garrett-Glaser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reindent after r25573
Originally committed as revision 25574 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
1a48a570
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
vp3.c
libavcodec/vp3.c
+6
-6
No files found.
libavcodec/vp3.c
View file @
10f69158
...
...
@@ -2053,14 +2053,14 @@ static int theora_decode_tables(AVCodecContext *avctx, GetBitContext *gb)
n
=
get_bits
(
gb
,
3
);
/* loop filter limit values table */
if
(
n
)
{
for
(
i
=
0
;
i
<
64
;
i
++
)
{
s
->
filter_limit_values
[
i
]
=
get_bits
(
gb
,
n
);
if
(
s
->
filter_limit_values
[
i
]
>
127
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"filter limit value too large (%i > 127), clamping
\n
"
,
s
->
filter_limit_values
[
i
]);
s
->
filter_limit_values
[
i
]
=
127
;
for
(
i
=
0
;
i
<
64
;
i
++
)
{
s
->
filter_limit_values
[
i
]
=
get_bits
(
gb
,
n
);
if
(
s
->
filter_limit_values
[
i
]
>
127
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"filter limit value too large (%i > 127), clamping
\n
"
,
s
->
filter_limit_values
[
i
]);
s
->
filter_limit_values
[
i
]
=
127
;
}
}
}
}
}
if
(
s
->
theora
>=
0x030200
)
...
...
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