mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-21 17:51:51 +00:00
[swfinterp] Implement pushtrue and pushfalse opcodes
This commit is contained in:
parent
eb5376044c
commit
a4bb83956c
1 changed files with 4 additions and 0 deletions
|
@ -426,6 +426,10 @@ class SWFInterpreter(object):
|
||||||
elif opcode == 36: # pushbyte
|
elif opcode == 36: # pushbyte
|
||||||
v = _read_byte(coder)
|
v = _read_byte(coder)
|
||||||
stack.append(v)
|
stack.append(v)
|
||||||
|
elif opcode == 38: # pushtrue
|
||||||
|
stack.append(True)
|
||||||
|
elif opcode == 39: # pushfalse
|
||||||
|
stack.append(False)
|
||||||
elif opcode == 42: # dup
|
elif opcode == 42: # dup
|
||||||
value = stack[-1]
|
value = stack[-1]
|
||||||
stack.append(value)
|
stack.append(value)
|
||||||
|
|
Loading…
Reference in a new issue