Skip to content

Commit

Permalink
avdevice/decklink_dec: remove av_dup_packet() usage
Browse files Browse the repository at this point in the history
Reviewed-by: Marton Balint <cus@passwd.hu>
Signed-off-by: James Almer <jamrial@gmail.com>
  • Loading branch information
jamrial committed Oct 2, 2017
1 parent 0c1ffd0 commit e91f0c4
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions libavdevice/decklink_dec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -450,22 +450,24 @@ static unsigned long long avpacket_queue_size(AVPacketQueue *q)
static int avpacket_queue_put(AVPacketQueue *q, AVPacket *pkt)
{
AVPacketList *pkt1;
int ret;

// Drop Packet if queue size is > maximum queue size
if (avpacket_queue_size(q) > (uint64_t)q->max_q_size) {
av_log(q->avctx, AV_LOG_WARNING, "Decklink input buffer overrun!\n");
return -1;
}
/* duplicate the packet */
if (av_dup_packet(pkt) < 0) {
return -1;
}

pkt1 = (AVPacketList *)av_malloc(sizeof(AVPacketList));
pkt1 = (AVPacketList *)av_mallocz(sizeof(AVPacketList));
if (!pkt1) {
return -1;
}
pkt1->pkt = *pkt;
ret = av_packet_ref(&pkt1->pkt, pkt);
av_packet_unref(pkt);
if (ret < 0) {
av_free(pkt1);
return -1;
}
pkt1->next = NULL;

pthread_mutex_lock(&q->mutex);
Expand Down

0 comments on commit e91f0c4

Please sign in to comment.