diff options
author | James Almer <jamrial@gmail.com> | 2017-05-18 19:54:09 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-05-18 19:55:44 -0300 |
commit | 1e8daf31e079beae232279293aa7371b58c29a0b (patch) | |
tree | f9c6cd4a29dc801a7c172ba78131d68ac1f255aa /libavcodec/hevc_parser.c | |
parent | f5e5c531170f0ce9c37e555e689ffd60694b47cd (diff) | |
download | ffmpeg-1e8daf31e079beae232279293aa7371b58c29a0b.tar.gz |
avcodec/hevc_parser: add missing call to ff_hevc_reset_sei()
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/hevc_parser.c')
-rw-r--r-- | libavcodec/hevc_parser.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/hevc_parser.c b/libavcodec/hevc_parser.c index d6102f3ab9..c72b1465f1 100644 --- a/libavcodec/hevc_parser.c +++ b/libavcodec/hevc_parser.c @@ -369,6 +369,7 @@ static void hevc_parser_close(AVCodecParserContext *s) ctx->ps.sps = NULL; ff_h2645_packet_uninit(&ctx->pkt); + ff_hevc_reset_sei(&ctx->sei); av_freep(&ctx->pc.buffer); } |