Re: [FFmpeg-devel] [PATCH] MIPS: replace addi with addiu

2019-07-10 Thread Michael Niedermayer
-devel@ffmpeg.org > >Cc: YunQiang Su > >Subject: [FFmpeg-devel] [PATCH] MIPS: replace addi with addiu > > > >addi/daddi are deprecated by MIPS for years, and MIPS r6 remove > >them. > > > >They should be replace with addiu: > > ADDIU performs the same

Re: [FFmpeg-devel] [PATCH] MIPS: replace addi with addiu

2019-07-09 Thread Shiyou Yin
>-Original Message- >From: ffmpeg-devel-boun...@ffmpeg.org [mailto:ffmpeg-devel-boun...@ffmpeg.org] >On Behalf Of >YunQiang Su >Sent: Tuesday, July 2, 2019 11:53 AM >To: ffmpeg-devel@ffmpeg.org >Cc: YunQiang Su >Subject: [FFmpeg-devel] [PATCH] MIPS: replace addi

[FFmpeg-devel] [PATCH] MIPS: replace addi with addiu

2019-07-01 Thread YunQiang Su
addi/daddi are deprecated by MIPS for years, and MIPS r6 remove them. They should be replace with addiu: ADDIU performs the same arithmetic operation but does not trap on overflow. --- libavcodec/mips/cabac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mip