Browse Source

mpegts: unref buffer in reset_pes_packet_state

Signed-off-by: Marton Balint <cus@passwd.hu>
tags/n2.3
Marton Balint 12 years ago
parent
commit
a78274329c
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavformat/mpegts.c

+ 2
- 1
libavformat/mpegts.c View File

@@ -791,9 +791,9 @@ static void reset_pes_packet_state(PESContext *pes)
{
pes->pts = AV_NOPTS_VALUE;
pes->dts = AV_NOPTS_VALUE;
pes->buffer = NULL;
pes->data_index = 0;
pes->flags = 0;
av_buffer_unref(&pes->buffer);
}

static void new_pes_packet(PESContext *pes, AVPacket *pkt)
@@ -823,6 +823,7 @@ static void new_pes_packet(PESContext *pes, AVPacket *pkt)
pkt->pos = pes->ts_packet_pos;
pkt->flags = pes->flags;

pes->buffer = NULL;
reset_pes_packet_state(pes);
}



Loading…
Cancel
Save