Re: [FFmpeg-devel] [PATCH 1/2] avcodec/mips: fix compilation with MIPS16

2020-04-12 Thread Rosen Penev
On Sun, Apr 12, 2020 at 7:40 AM Michael Niedermayer wrote: > > On Sat, Apr 11, 2020 at 06:54:32PM -0700, Rosen Penev wrote: > > get_cabac_inline for mips uses inline asm that relies on mips32 > > instructions. > > > > Signed-off-by: Rosen Penev > > --- > > libavcodec/mips/cabac.h | 2 ++ > > 1

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/mips: fix compilation with MIPS16

2020-04-12 Thread Michael Niedermayer
On Sat, Apr 11, 2020 at 06:54:32PM -0700, Rosen Penev wrote: > get_cabac_inline for mips uses inline asm that relies on mips32 > instructions. > > Signed-off-by: Rosen Penev > --- > libavcodec/mips/cabac.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavcodec/mips/cabac.h

[FFmpeg-devel] [PATCH 1/2] avcodec/mips: fix compilation with MIPS16

2020-04-11 Thread Rosen Penev
get_cabac_inline for mips uses inline asm that relies on mips32 instructions. Signed-off-by: Rosen Penev --- libavcodec/mips/cabac.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/mips/cabac.h b/libavcodec/mips/cabac.h index 2a05e5ab3c..cc40dbba15 100644 ---