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
af7ca6ea
Commit
af7ca6ea
authored
Oct 20, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nutdec: check av_new_packet return value
CC: libav-stable@libav.org Bug-Id: CID 733713
parent
b69183f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
nutdec.c
libavformat/nutdec.c
+4
-2
No files found.
libavformat/nutdec.c
View file @
af7ca6ea
...
@@ -823,7 +823,7 @@ static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code)
...
@@ -823,7 +823,7 @@ static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code)
{
{
AVFormatContext
*
s
=
nut
->
avf
;
AVFormatContext
*
s
=
nut
->
avf
;
AVIOContext
*
bc
=
s
->
pb
;
AVIOContext
*
bc
=
s
->
pb
;
int
size
,
stream_id
,
discard
;
int
size
,
stream_id
,
discard
,
ret
;
int64_t
pts
,
last_IP_pts
;
int64_t
pts
,
last_IP_pts
;
StreamContext
*
stc
;
StreamContext
*
stc
;
uint8_t
header_idx
;
uint8_t
header_idx
;
...
@@ -848,7 +848,9 @@ static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code)
...
@@ -848,7 +848,9 @@ static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code)
return
1
;
return
1
;
}
}
av_new_packet
(
pkt
,
size
+
nut
->
header_len
[
header_idx
]);
ret
=
av_new_packet
(
pkt
,
size
+
nut
->
header_len
[
header_idx
]);
if
(
ret
<
0
)
return
ret
;
memcpy
(
pkt
->
data
,
nut
->
header
[
header_idx
],
nut
->
header_len
[
header_idx
]);
memcpy
(
pkt
->
data
,
nut
->
header
[
header_idx
],
nut
->
header_len
[
header_idx
]);
pkt
->
pos
=
avio_tell
(
bc
);
// FIXME
pkt
->
pos
=
avio_tell
(
bc
);
// FIXME
avio_read
(
bc
,
pkt
->
data
+
nut
->
header_len
[
header_idx
],
size
);
avio_read
(
bc
,
pkt
->
data
+
nut
->
header_len
[
header_idx
],
size
);
...
...
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