We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7668eea commit 08fa176Copy full SHA for 08fa176
test/test_transform_ops.py
@@ -135,14 +135,13 @@ def test_color_conversion_library_with_generated_videos(
135
)
136
137
auto_decoder = create_from_file(str(video_path))
138
- _add_video_stream(
+ add_video_stream(
139
auto_decoder,
140
- color_conversion_library="swscale",
141
142
143
filtergraph_frame0, *_ = get_frame_at_index(filtergraph_decoder, frame_index=0)
144
- swscale_frame0, *_ = get_frame_at_index(auto_decoder, frame_index=0)
145
- assert_frames_equal(filtergraph_frame0, swscale_frame0)
+ auto_frame0, *_ = get_frame_at_index(auto_decoder, frame_index=0)
+ assert_frames_equal(filtergraph_frame0, auto_frame0)
146
147
@needs_cuda
148
def test_scaling_on_cuda_fails(self):
0 commit comments