ffmpeg | branch: release/7.1 | Michael Niedermayer <mich...@niedermayer.cc> | Sat Oct 7 01:43:42 2023 +0200| [76ddc3f1e1e6a4cef8a7d04697c4b7f0d9cfe7d9] | committer: Michael Niedermayer
avcodec/ffv1: Store and reuse sx/sy Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> (cherry picked from commit 7151081e33425010a53c7573e84b274c68ad8087) Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=76ddc3f1e1e6a4cef8a7d04697c4b7f0d9cfe7d9 --- libavcodec/ffv1.c | 2 ++ libavcodec/ffv1.h | 1 + libavcodec/ffv1enc.c | 4 ++-- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 333fb3d79b..56a36e479f 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -144,6 +144,8 @@ av_cold int ff_ffv1_init_slice_contexts(FFV1Context *f) sc->slice_height = sye - sys; sc->slice_x = sxs; sc->slice_y = sys; + sc->sx = sx; + sc->sy = sy; sc->sample_buffer = av_malloc_array((f->width + 6), 3 * MAX_PLANES * sizeof(*sc->sample_buffer)); diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index 9aa0452922..a35197964e 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -75,6 +75,7 @@ typedef struct FFV1SliceContext { int slice_height; int slice_x; int slice_y; + int sx, sy; int run_index; int slice_coding_mode; diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index a216fb04c7..266ef13b24 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -923,8 +923,8 @@ static void encode_slice_header(FFV1Context *f, FFV1SliceContext *sc) int j; memset(state, 128, sizeof(state)); - put_symbol(c, state, (sc->slice_x +1)*f->num_h_slices / f->width , 0); - put_symbol(c, state, (sc->slice_y +1)*f->num_v_slices / f->height , 0); + put_symbol(c, state, sc->sx, 0); + put_symbol(c, state, sc->sy, 0); put_symbol(c, state, 0, 0); put_symbol(c, state, 0, 0); for (j=0; j<f->plane_count; j++) { _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".