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
f8a81755
Commit
f8a81755
authored
Jul 03, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jvdec: remove redundant check
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
1bc9e4c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
jvdec.c
libavcodec/jvdec.c
+2
-2
No files found.
libavcodec/jvdec.c
View file @
f8a81755
...
...
@@ -142,7 +142,7 @@ static int decode_frame(AVCodecContext *avctx,
buf
+=
5
;
if
(
video_size
)
{
if
(
video_size
<
0
||
video_size
>
avpkt
->
size
)
{
if
(
video_size
<
0
||
video_size
>
avpkt
->
size
-
5
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"video size %d invalid
\n
"
,
video_size
);
return
AVERROR_INVALIDDATA
;
}
...
...
@@ -153,7 +153,7 @@ static int decode_frame(AVCodecContext *avctx,
if
(
video_type
==
0
||
video_type
==
1
)
{
GetBitContext
gb
;
init_get_bits
(
&
gb
,
buf
,
8
*
FFMIN
(
video_size
,
buf_end
-
buf
)
);
init_get_bits
(
&
gb
,
buf
,
8
*
video_size
);
for
(
j
=
0
;
j
<
avctx
->
height
;
j
+=
8
)
for
(
i
=
0
;
i
<
avctx
->
width
;
i
+=
8
)
...
...
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