ffmpeg | branch: master | Paul B Mahol <[email protected]> | Thu Dec 1 23:54:58 2022 +0100| [1bebcd43e1a6d7e3a0743adcc10245e5d51f72b1] | committer: Paul B Mahol
avcodec/smcenc: fix silly typo > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1bebcd43e1a6d7e3a0743adcc10245e5d51f72b1 --- libavcodec/smcenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/smcenc.c b/libavcodec/smcenc.c index df6ada3b7b..9ff9dc697d 100644 --- a/libavcodec/smcenc.c +++ b/libavcodec/smcenc.c @@ -216,7 +216,7 @@ static void smc_encode_stream(SMCContext *s, const AVFrame *frame, while (block_counter + coded_blocks < total_blocks && coded_blocks < 256) { const int y_size = FFMIN(4, height - cur_y); - const int x_size = FFMIN(4, width - cur_y); + const int x_size = FFMIN(4, width - cur_x); const int nb_elements = x_size * y_size; uint8_t block_values[16] = { 0 }; for (int y = 0; y < y_size; y++) _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
