]> git.sesse.net Git - ffmpeg/commitdiff
avdevice/decklink_dec: unref packets on avpacket_queue_put error
authorMarton Balint <cus@passwd.hu>
Sun, 22 Apr 2018 21:09:05 +0000 (23:09 +0200)
committerMarton Balint <cus@passwd.hu>
Mon, 30 Apr 2018 20:44:58 +0000 (22:44 +0200)
Signed-off-by: Marton Balint <cus@passwd.hu>
libavdevice/decklink_dec.cpp

index 10535dc388e497dd4081d044f9f0b723a075dc0e..510637676c5801e918147433a0996eed85948f7f 100644 (file)
@@ -475,16 +475,19 @@ static int avpacket_queue_put(AVPacketQueue *q, AVPacket *pkt)
 
     // Drop Packet if queue size is > maximum queue 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");
         return -1;
     }
     /* ensure the packet is reference counted */
     if (av_packet_make_refcounted(pkt) < 0) {
+        av_packet_unref(pkt);
         return -1;
     }
 
     pkt1 = (AVPacketList *)av_malloc(sizeof(AVPacketList));
     if (!pkt1) {
+        av_packet_unref(pkt);
         return -1;
     }
     av_packet_move_ref(&pkt1->pkt, pkt);