ban byte string

This commit is contained in:
henryruhs
2026-05-26 19:15:11 +02:00
parent d77be89177
commit cc0af9175a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ def collect(aom_encoder : AomEncoder) -> bytes:
packet = aom_library.aom_codec_get_cx_data(aom_encoder, ctypes.byref(packet_cursor))
return b''.join(output_parts)
return bytes().join(output_parts)
def destroy(aom_encoder : AomEncoder) -> None:
+1 -1
View File
@@ -66,7 +66,7 @@ def collect(vpx_encoder : VpxEncoder) -> bytes:
packet = vpx_library.vpx_codec_get_cx_data(vpx_encoder, ctypes.byref(packet_cursor))
return b''.join(output_parts)
return bytes().join(output_parts)
def destroy(vpx_encoder : VpxEncoder) -> None: