mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/hls: Use av_packet_move_ref() for packet ownership transfer
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
74a8be3546
commit
5b42d33571
@ -2201,9 +2201,8 @@ static int hls_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
ist = pls->ctx->streams[pls->pkt.stream_index];
|
ist = pls->ctx->streams[pls->pkt.stream_index];
|
||||||
st = pls->main_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;
|
pkt->stream_index = st->index;
|
||||||
reset_packet(&c->playlists[minplaylist]->pkt);
|
|
||||||
|
|
||||||
if (pkt->dts != AV_NOPTS_VALUE)
|
if (pkt->dts != AV_NOPTS_VALUE)
|
||||||
c->cur_timestamp = av_rescale_q(pkt->dts,
|
c->cur_timestamp = av_rescale_q(pkt->dts,
|
||||||
|
Loading…
Reference in New Issue
Block a user