Message ID | 20231124235919.9281-1-jamrial@gmail.com |
---|---|
State | Accepted |
Commit | 72390dea003923a4b162a38cc85fd2220098284b |
Headers | show |
Series | [FFmpeg-devel] mips/ac3dsp_mips: add missing stddef.h header include | expand |
Context | Check | Description |
---|---|---|
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
On Fri, Nov 24, 2023 at 08:59:19PM -0300, James Almer wrote: > Fixes compilation failures after 567c67c6c8cb9be083f56198bfa979e4bda84c99. > > Signed-off-by: James Almer <jamrial@gmail.com> > --- > libavcodec/mips/ac3dsp_mips.c | 2 ++ > 1 file changed, 2 insertions(+) LGTM thx [...]
On 11/25/2023 9:35 PM, Michael Niedermayer wrote: > On Fri, Nov 24, 2023 at 08:59:19PM -0300, James Almer wrote: >> Fixes compilation failures after 567c67c6c8cb9be083f56198bfa979e4bda84c99. >> >> Signed-off-by: James Almer <jamrial@gmail.com> >> --- >> libavcodec/mips/ac3dsp_mips.c | 2 ++ >> 1 file changed, 2 insertions(+) > > LGTM > > thx Applied.
On Sat, Nov 25, 2023, 19:52 James Almer <jamrial@gmail.com> wrote: > On 11/25/2023 9:35 PM, Michael Niedermayer wrote: > > On Fri, Nov 24, 2023 at 08:59:19PM -0300, James Almer wrote: > >> Fixes compilation failures after > 567c67c6c8cb9be083f56198bfa979e4bda84c99. > >> > >> Signed-off-by: James Almer <jamrial@gmail.com> > >> --- > >> libavcodec/mips/ac3dsp_mips.c | 2 ++ > >> 1 file changed, 2 insertions(+) > > > > LGTM > > > > thx > > Applied. > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". > Tangential to the change, but I would be super curious to know if anyone is using modern FFmpeg on MIPS hardware, be it a Cavium or whatnot. -- Sean McGovern
diff --git a/libavcodec/mips/ac3dsp_mips.c b/libavcodec/mips/ac3dsp_mips.c index 3ea3acc185..e97a412922 100644 --- a/libavcodec/mips/ac3dsp_mips.c +++ b/libavcodec/mips/ac3dsp_mips.c @@ -53,6 +53,8 @@ * Reference: libavcodec/ac3dsp.c */ +#include <stddef.h> + #include "config.h" #include "libavcodec/ac3dsp.h" #include "libavcodec/ac3.h"
Fixes compilation failures after 567c67c6c8cb9be083f56198bfa979e4bda84c99. Signed-off-by: James Almer <jamrial@gmail.com> --- libavcodec/mips/ac3dsp_mips.c | 2 ++ 1 file changed, 2 insertions(+)