On date Monday 2023-12-11 02:35:25 +0100, Clément Bœsch wrote: > This matches the name in proresenc_kostya. > --- > libavcodec/proresenc_anatoliy.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c > index 43dee7f79b..4b72798689 100644 > --- a/libavcodec/proresenc_anatoliy.c > +++ b/libavcodec/proresenc_anatoliy.c > @@ -256,7 +256,7 @@ static void encode_vlc_codeword(PutBitContext *pb, > unsigned codebook, int val) > } > > #define GET_SIGN(x) ((x) >> 31) > -#define TO_GOLOMB(val) (((val) * 2) ^ GET_SIGN(val)) > +#define MAKE_CODE(x) (((x) * 2) ^ GET_SIGN(x)) > #define TO_GOLOMB2(val,sign) ((val)==0 ? 0 : ((val) << 1) + (sign))
LGTM. _______________________________________________ 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 with subject "unsubscribe".