Skip to content

Commit 08fa176

Browse files
committed
Go back to auto
1 parent 7668eea commit 08fa176

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/test_transform_ops.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,14 +135,13 @@ def test_color_conversion_library_with_generated_videos(
135135
)
136136

137137
auto_decoder = create_from_file(str(video_path))
138-
_add_video_stream(
138+
add_video_stream(
139139
auto_decoder,
140-
color_conversion_library="swscale",
141140
)
142141

143142
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)
143+
auto_frame0, *_ = get_frame_at_index(auto_decoder, frame_index=0)
144+
assert_frames_equal(filtergraph_frame0, auto_frame0)
146145

147146
@needs_cuda
148147
def test_scaling_on_cuda_fails(self):

0 commit comments

Comments
 (0)