Skip to content

Commit 77bb0ef

Browse files
committed
Fix this warning:
src/av/video/frame.c: In function ‘__pyx_f_2av_5video_5frame_copy_bytes_to_plane’: src/av/video/frame.c:18808:41: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 18808 | for (__pyx_t_15 = 0; __pyx_t_15 < __pyx_t_16; __pyx_t_15+=1) { |
1 parent e343eae commit 77bb0ef

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

av/video/frame.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ def copy_bytes_to_plane(
155155
end_row = plane.height
156156
step = 1
157157

158-
i, j = cython.declare(cython.int)
159158
for row in range(start_row, end_row, step):
160159
i_pos = row * i_stride
161160
if flip_horizontal:

0 commit comments

Comments
 (0)