1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

hls: Free packets when skipping packets when seeking

This fixes memory leaks present since 2b3d041cdc.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2013-07-29 11:27:44 +03:00
parent a2b7eeeb06
commit 06205b5efd

View File

@ -651,6 +651,8 @@ start:
c->seek_timestamp = AV_NOPTS_VALUE; c->seek_timestamp = AV_NOPTS_VALUE;
break; break;
} }
av_free_packet(&var->pkt);
reset_packet(&var->pkt);
} }
} }
/* Check if this stream still is on an earlier segment number, or /* Check if this stream still is on an earlier segment number, or