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
649087fa
Commit
649087fa
authored
Apr 22, 2018
by
Marton Balint
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avdevice/decklink_dec: unref packets on avpacket_queue_put error
Signed-off-by:
Marton Balint
<
cus@passwd.hu
>
parent
75d1529c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
decklink_dec.cpp
libavdevice/decklink_dec.cpp
+3
-0
No files found.
libavdevice/decklink_dec.cpp
View file @
649087fa
...
@@ -475,16 +475,19 @@ static int avpacket_queue_put(AVPacketQueue *q, AVPacket *pkt)
...
@@ -475,16 +475,19 @@ static int avpacket_queue_put(AVPacketQueue *q, AVPacket *pkt)
// Drop Packet if queue size is > maximum queue size
// Drop Packet if queue size is > maximum queue size
if
(
avpacket_queue_size
(
q
)
>
(
uint64_t
)
q
->
max_q_size
)
{
if
(
avpacket_queue_size
(
q
)
>
(
uint64_t
)
q
->
max_q_size
)
{
av_packet_unref
(
pkt
);
av_log
(
q
->
avctx
,
AV_LOG_WARNING
,
"Decklink input buffer overrun!
\n
"
);
av_log
(
q
->
avctx
,
AV_LOG_WARNING
,
"Decklink input buffer overrun!
\n
"
);
return
-
1
;
return
-
1
;
}
}
/* ensure the packet is reference counted */
/* ensure the packet is reference counted */
if
(
av_packet_make_refcounted
(
pkt
)
<
0
)
{
if
(
av_packet_make_refcounted
(
pkt
)
<
0
)
{
av_packet_unref
(
pkt
);
return
-
1
;
return
-
1
;
}
}
pkt1
=
(
AVPacketList
*
)
av_malloc
(
sizeof
(
AVPacketList
));
pkt1
=
(
AVPacketList
*
)
av_malloc
(
sizeof
(
AVPacketList
));
if
(
!
pkt1
)
{
if
(
!
pkt1
)
{
av_packet_unref
(
pkt
);
return
-
1
;
return
-
1
;
}
}
av_packet_move_ref
(
&
pkt1
->
pkt
,
pkt
);
av_packet_move_ref
(
&
pkt1
->
pkt
,
pkt
);
...
...
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