diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-13 12:19:28 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-13 12:19:28 -0500 |
commit | 471eb83d9290e7d0f9c5299a2a37e6abff7a61af (patch) | |
tree | 6b73842dbdfb7f85cf14205d972044a730599975 /lvc | |
parent | b589c856a1bc83c9820e5955edd5a8ce977a5720 (diff) | |
download | librevideoconverter-471eb83d9290e7d0f9c5299a2a37e6abff7a61af.tar.lz librevideoconverter-471eb83d9290e7d0f9c5299a2a37e6abff7a61af.tar.xz librevideoconverter-471eb83d9290e7d0f9c5299a2a37e6abff7a61af.zip |
pep8 en lvc/qtfaststart/processor.py
Diffstat (limited to 'lvc')
-rwxr-xr-x | lvc/qtfaststart/processor.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lvc/qtfaststart/processor.py b/lvc/qtfaststart/processor.py index d0ed003..fd2af6a 100755 --- a/lvc/qtfaststart/processor.py +++ b/lvc/qtfaststart/processor.py @@ -7,7 +7,7 @@ import logging import os import struct -#from StringIO import StringIO +# from StringIO import StringIO try: from StringIO import StringIO except ImportError: @@ -23,6 +23,7 @@ log = logging.getLogger("qtfaststart") if not hasattr(os, 'SEEK_CUR'): os.SEEK_CUR = 1 + def read_atom(datastream): """ Read an atom and return a tuple of (size, type) where size is the size |