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
1967cd4e
Commit
1967cd4e
authored
Oct 20, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audiointerleave: check av_new_packet return value
CC: libav-stable@libav.org Bug-Id: CID 1087078
parent
ac84c1ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
audiointerleave.c
libavformat/audiointerleave.c
+4
-2
No files found.
libavformat/audiointerleave.c
View file @
1967cd4e
...
...
@@ -75,12 +75,14 @@ static int interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt,
{
AVStream
*
st
=
s
->
streams
[
stream_index
];
AudioInterleaveContext
*
aic
=
st
->
priv_data
;
int
ret
;
int
size
=
FFMIN
(
av_fifo_size
(
aic
->
fifo
),
*
aic
->
samples
*
aic
->
sample_size
);
if
(
!
size
||
(
!
flush
&&
size
==
av_fifo_size
(
aic
->
fifo
)))
return
0
;
av_new_packet
(
pkt
,
size
);
ret
=
av_new_packet
(
pkt
,
size
);
if
(
ret
<
0
)
return
ret
;
av_fifo_generic_read
(
aic
->
fifo
,
pkt
->
data
,
size
,
NULL
);
pkt
->
dts
=
pkt
->
pts
=
aic
->
dts
;
...
...
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