Browse Source

[utils] Add urshift()

Used in IqiyiIE and LeIE
totalwebcasting
Yen Chi Hsuan 8 years ago
parent
commit
1143535d76
No known key found for this signature in database GPG Key ID: 3FDDD575826C5C30
2 changed files with 9 additions and 0 deletions
  1. +5
    -0
      test/test_utils.py
  2. +4
    -0
      youtube_dl/utils.py

+ 5
- 0
test/test_utils.py View File

@ -66,6 +66,7 @@ from youtube_dl.utils import (
lowercase_escape,
url_basename,
urlencode_postdata,
urshift,
update_url_query,
version_tuple,
xpath_with_ns,
@ -980,5 +981,9 @@ The first line
self.assertRaises(ValueError, encode_base_n, 0, 70)
self.assertRaises(ValueError, encode_base_n, 0, 60, custom_table)
def test_urshift(self):
self.assertEqual(urshift(3, 1), 1)
self.assertEqual(urshift(-3, 1), 2147483646)
if __name__ == '__main__':
unittest.main()

+ 4
- 0
youtube_dl/utils.py View File

@ -2899,3 +2899,7 @@ def parse_m3u8_attributes(attrib):
val = val[1:-1]
info[key] = val
return info
def urshift(val, n):
return val >> n if val >= 0 else (val + 0x100000000) >> n

Loading…
Cancel
Save