Skip to content
Snippets Groups Projects
Commit 42195f2c authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Shrink list of checked codecs to statisfy ffmpeg <= 0.5 (Ubuntu 10.04)

parent 1372824a
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,6 @@ from . import test_utils ...@@ -16,7 +16,6 @@ from . import test_utils
# These are some global parameters for the test. # These are some global parameters for the test.
INPUT_VIDEO = test_utils.datafile('test.mov', __name__) INPUT_VIDEO = test_utils.datafile('test.mov', __name__)
@test_utils.ffmpeg_found()
def test_codec_support(): def test_codec_support():
# Describes all encoders # Describes all encoders
...@@ -30,7 +29,7 @@ def test_codec_support(): ...@@ -30,7 +29,7 @@ def test_codec_support():
if v['encode']: assert describe_encoder(v['id']) if v['encode']: assert describe_encoder(v['id'])
# Assert we support, at least, some known codecs # Assert we support, at least, some known codecs
for codec in ('ffv1', 'zlib', 'wmv2', 'mpeg4', 'mjpeg'): for codec in ('ffv1', 'wmv2', 'mpeg4', 'mjpeg'):
assert codec in supported assert codec in supported
assert supported[codec]['encode'] assert supported[codec]['encode']
assert supported[codec]['decode'] assert supported[codec]['decode']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment