Message ID | GV1P250MB07376DB62F134F911FBD81A18F3B2@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM |
---|---|
State | Accepted |
Commit | cd63dab55cde491afd7e7b24197c8745ce6bc71a |
Headers | show |
Series | [FFmpeg-devel,01/18] avcodec/mips/ac3dsp_mips: Add missing includes | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
Andreas Rheinhardt: > Likely broken in d7a75d21635eab4f4a1efea22945933059c2e36f. > > Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> > --- > libavcodec/mips/ac3dsp_mips.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavcodec/mips/ac3dsp_mips.c b/libavcodec/mips/ac3dsp_mips.c > index e97a412922..cc49ba3888 100644 > --- a/libavcodec/mips/ac3dsp_mips.c > +++ b/libavcodec/mips/ac3dsp_mips.c > @@ -54,11 +54,13 @@ > */ > > #include <stddef.h> > +#include <string.h> > > #include "config.h" > #include "libavcodec/ac3dsp.h" > #include "libavcodec/ac3.h" > #include "libavcodec/ac3tab.h" > +#include "libavutil/macros.h" > #include "libavutil/mips/asmdefs.h" > > #if HAVE_INLINE_ASM Will apply the remainder of this patchset tomorrow unless there are objections. - Andreas
diff --git a/libavcodec/mips/ac3dsp_mips.c b/libavcodec/mips/ac3dsp_mips.c index e97a412922..cc49ba3888 100644 --- a/libavcodec/mips/ac3dsp_mips.c +++ b/libavcodec/mips/ac3dsp_mips.c @@ -54,11 +54,13 @@ */ #include <stddef.h> +#include <string.h> #include "config.h" #include "libavcodec/ac3dsp.h" #include "libavcodec/ac3.h" #include "libavcodec/ac3tab.h" +#include "libavutil/macros.h" #include "libavutil/mips/asmdefs.h" #if HAVE_INLINE_ASM
Likely broken in d7a75d21635eab4f4a1efea22945933059c2e36f. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> --- libavcodec/mips/ac3dsp_mips.c | 2 ++ 1 file changed, 2 insertions(+)