Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-04-18 21:19:40 +0300
committerJames Almer <jamrial@gmail.com>2018-04-19 04:59:33 +0300
commit86d6fca94be70f23a8a27d3bc35d2fa7a914a4b9 (patch)
treee6dacbe1c2a814d3dabdd7df03f7a9aa6d18b668
parent13deb0c1f6af43c4975f12478544ef718f0a7582 (diff)
avdevice/iec61883: return reference counted packets
Fixes part of ticket #7146, dealing with leaks of packet data since commit 87c88122703f2befcf96383d05bdf14373c22df9. Signed-off-by: James Almer <jamrial@gmail.com> (cherry picked from commit b8629654c6460a28c507f816a977914e3a6f2520)
-rw-r--r--libavdevice/iec61883.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/libavdevice/iec61883.c b/libavdevice/iec61883.c
index 721dca38ee..aeca7616df 100644
--- a/libavdevice/iec61883.c
+++ b/libavdevice/iec61883.c
@@ -118,7 +118,7 @@ static int iec61883_callback(unsigned char *data, int length,
goto exit;
}
- packet->buf = av_malloc(length);
+ packet->buf = av_malloc(length + AV_INPUT_BUFFER_PADDING_SIZE);
if (!packet->buf) {
av_free(packet);
ret = -1;
@@ -127,6 +127,7 @@ static int iec61883_callback(unsigned char *data, int length,
packet->len = length;
memcpy(packet->buf, data, length);
+ memset(packet->buf + length, 0, AV_INPUT_BUFFER_PADDING_SIZE);
if (dv->queue_first) {
dv->queue_last->next = packet;
@@ -200,13 +201,21 @@ static int iec61883_parse_queue_dv(struct iec61883_data *dv, AVPacket *pkt)
size = avpriv_dv_produce_packet(dv->dv_demux, pkt,
packet->buf, packet->len, -1);
dv->queue_first = packet->next;
+ if (size < 0)
+ av_free(packet->buf);
av_free(packet);
dv->packets--;
- if (size > 0)
- return size;
+ if (size < 0)
+ return -1;
- return -1;
+ if (av_packet_from_data(pkt, pkt->data, pkt->size) < 0) {
+ av_freep(&pkt->data);
+ av_packet_unref(pkt);
+ return -1;
+ }
+
+ return size;
}
static int iec61883_parse_queue_hdv(struct iec61883_data *dv, AVPacket *pkt)