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-20 15:15:30 +00:00
committed by Timo Rothenpieler
co-authored by Timo Rothenpieler
parent a9c4fdd329
commit a3dcc6e2ce
+1 -1
View File
@@ -810,7 +810,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;
}