8000 Add comment in test · Powercoder64/ffmpeg-python@f4025b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit f4025b4

Browse files
committed
Add comment in test
1 parent 7824092 commit f4025b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ffmpeg/tests/test_ffmpeg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def test_pipe():
201201
p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
202202

203203
in_data = bytes(bytearray([random.randint(0,255) for _ in range(frame_size * frame_count)]))
204-
p.stdin.write(in_data)
204+
p.stdin.write(in_data) # note: this could block, in which case need to use threads
205205
p.stdin.close()
206206

207207
out_data = p.stdout.read()

0 commit comments

Comments
 (0)
0