bug in commit message, otherwise lgtm On 1/30/20, Marton Balint <c...@passwd.hu> wrote: > Right shift of signed value is impelentation defined. > > Signed-off-by: Marton Balint <c...@passwd.hu> > --- > libavutil/common.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavutil/common.h b/libavutil/common.h > index f09f0b486b..5568754bb9 100644 > --- a/libavutil/common.h > +++ b/libavutil/common.h > @@ -389,7 +389,7 @@ static av_always_inline av_const int > av_parity_c(uint32_t v) > if ((val & 0xc0) == 0x80 || val >= 0xFE)\ > ERROR\ > while (val & top) {\ > - int tmp= (GET_BYTE) - 128;\ > + unsigned int tmp = (GET_BYTE) - 128;\ > if(tmp>>6)\ > ERROR\ > val= (val<<6) + tmp;\ > -- > 2.16.4 > > _______________________________________________ > 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". _______________________________________________ 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".