diff options
| -rw-r--r-- | youtube_dl/swfinterp.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/youtube_dl/swfinterp.py b/youtube_dl/swfinterp.py index 1e8b26ecc..dd4dd060a 100644 --- a/youtube_dl/swfinterp.py +++ b/youtube_dl/swfinterp.py @@ -426,6 +426,10 @@ class SWFInterpreter(object):                  elif opcode == 36:  # pushbyte                      v = _read_byte(coder)                      stack.append(v) +                elif opcode == 38:  # pushtrue +                    stack.append(True) +                elif opcode == 39:  # pushfalse +                    stack.append(False)                  elif opcode == 42:  # dup                      value = stack[-1]                      stack.append(value) | 
