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
859a579e
Commit
859a579e
authored
Aug 06, 2012
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nuv: check RTjpeg header for validity
CC: libav-stable@libav.org
parent
110d015a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
nuv.c
libavcodec/nuv.c
+5
-4
rtjpeg.h
libavcodec/rtjpeg.h
+3
-0
No files found.
libavcodec/nuv.c
View file @
859a579e
...
...
@@ -184,17 +184,18 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
}
if
(
c
->
codec_frameheader
)
{
int
w
,
h
,
q
;
if
(
buf_size
<
12
)
{
if
(
buf_size
<
RTJPEG_HEADER_SIZE
||
buf
[
4
]
!=
RTJPEG_HEADER_SIZE
||
buf
[
5
]
!=
RTJPEG_FILE_VERSION
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"invalid nuv video frame
\n
"
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
w
=
AV_RL16
(
&
buf
[
6
]);
h
=
AV_RL16
(
&
buf
[
8
]);
q
=
buf
[
10
];
if
(
!
codec_reinit
(
avctx
,
w
,
h
,
q
))
return
-
1
;
buf
=
&
buf
[
12
];
buf_size
-=
12
;
buf
=
&
buf
[
RTJPEG_HEADER_SIZE
];
buf_size
-=
RTJPEG_HEADER_SIZE
;
}
if
(
keyframe
&&
c
->
pic
.
data
[
0
])
...
...
libavcodec/rtjpeg.h
View file @
859a579e
...
...
@@ -25,6 +25,9 @@
#include <stdint.h>
#include "dsputil.h"
#define RTJPEG_FILE_VERSION 0
#define RTJPEG_HEADER_SIZE 12
typedef
struct
{
int
w
,
h
;
DSPContext
*
dsp
;
...
...
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