diff mbox

[FFmpeg-devel,1/2] avformat/hls: Use av_packet_move_ref() for packet ownership transfer

Message ID 20191203102739.25613-1-andreas.rheinhardt@gmail.com
State Withdrawn
Headers show

Commit Message

Andreas Rheinhardt Dec. 3, 2019, 10:27 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavformat/hls.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Andreas Rheinhardt Dec. 3, 2019, 10:28 a.m. UTC | #1
On Tue, Dec 3, 2019 at 11:27 AM Andreas Rheinhardt <
andreas.rheinhardt@gmail.com> wrote:

> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
> ---
>  libavformat/hls.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>

I accidentally resent this; please ignore it.

- Andreas
diff mbox

Patch

diff --git a/libavformat/hls.c b/libavformat/hls.c
index 21353bbad7..f60396f246 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -2201,9 +2201,8 @@  static int hls_read_packet(AVFormatContext *s, AVPacket *pkt)
         ist = pls->ctx->streams[pls->pkt.stream_index];
         st = pls->main_streams[pls->pkt.stream_index];
 
-        *pkt = pls->pkt;
+        av_packet_move_ref(pkt, &pls->pkt);
         pkt->stream_index = st->index;
-        reset_packet(&c->playlists[minplaylist]->pkt);
 
         if (pkt->dts != AV_NOPTS_VALUE)
             c->cur_timestamp = av_rescale_q(pkt->dts,