Fix bugs caused by typos
This commit is contained in:
parent
7d02dcfaa2
commit
2583c0b54e
4 changed files with 4 additions and 5 deletions
|
@ -98,7 +98,7 @@ def write_piff_header(stream, params):
|
|||
|
||||
if is_audio:
|
||||
smhd_payload = s88.pack(0) # balance
|
||||
smhd_payload = u16.pack(0) # reserved
|
||||
smhd_payload += u16.pack(0) # reserved
|
||||
media_header_box = full_box(b'smhd', 0, 0, smhd_payload) # Sound Media Header
|
||||
else:
|
||||
vmhd_payload = u16.pack(0) # graphics mode
|
||||
|
@ -126,7 +126,6 @@ def write_piff_header(stream, params):
|
|||
if fourcc == 'AACL':
|
||||
sample_entry_box = box(b'mp4a', sample_entry_payload)
|
||||
else:
|
||||
sample_entry_payload = sample_entry_payload
|
||||
sample_entry_payload += u16.pack(0) # pre defined
|
||||
sample_entry_payload += u16.pack(0) # reserved
|
||||
sample_entry_payload += u32.pack(0) * 3 # pre defined
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue