Re: [FFmpeg-devel] [PATCH 17/27] avformat/movenchint: Simplify writing padding

2021-09-23 Thread Andreas Rheinhardt
Paul B Mahol: > lgtm if ffio_fill does not turn negative argument into very positive one. > ffio_fill does not do that; and the argument here is always nonnegative. Here is the loop: while (size > 0) { int len = size; // size is an int and > 0 and so is len is now if (len > 1

Re: [FFmpeg-devel] [PATCH 17/27] avformat/movenchint: Simplify writing padding

2021-09-23 Thread Paul B Mahol
lgtm if ffio_fill does not turn negative argument into very positive one. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org wi