avformat/hlsenc: use correct close function for custom io

This is open by s->io_open().

(cherry picked from commit 200cbaeb5a)

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
Kacper Michajłow
2026-05-16 18:07:19 +02:00
parent 8c31bbbb37
commit da9dd86bdc
+1 -1
View File
@@ -703,7 +703,7 @@ static int do_encrypt(AVFormatContext *s, VariantStream *vs)
return ret;
avio_seek(pb, 0, SEEK_CUR);
avio_write(pb, key, KEYSIZE);
avio_close(pb);
ff_format_io_close(s, &pb);
}
return 0;
}