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
50ec8a2a
Commit
50ec8a2a
authored
Apr 07, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg4videodec: Force quant_precision to stay within the valid range.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
59edf33f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
mpeg4videodec.c
libavcodec/mpeg4videodec.c
+3
-0
No files found.
libavcodec/mpeg4videodec.c
View file @
50ec8a2a
...
...
@@ -1674,6 +1674,9 @@ static int decode_vol_header(MpegEncContext *s, GetBitContext *gb){
s
->
quant_precision
=
get_bits
(
gb
,
4
);
/* quant_precision */
if
(
get_bits
(
gb
,
4
)
!=
8
)
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"N-bit not supported
\n
"
);
/* bits_per_pixel */
if
(
s
->
quant_precision
!=
5
)
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"quant precision %d
\n
"
,
s
->
quant_precision
);
if
(
s
->
quant_precision
<
3
||
s
->
quant_precision
>
9
)
{
s
->
quant_precision
=
5
;
}
}
else
{
s
->
quant_precision
=
5
;
}
...
...
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