Skip to content

Commit c8549d4

Browse files
committed
avcodec/msmpeg4: Don't include x86-specific header unconditionally
Signed-off-by: Andreas Rheinhardt <[email protected]>
1 parent a265e8c commit c8549d4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

libavcodec/msmpeg4.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,17 @@
2727
* MSMPEG4 backend for encoder and decoder
2828
*/
2929

30+
#include "config.h"
31+
3032
#include "libavutil/thread.h"
33+
#if ARCH_X86
34+
#include "libavutil/x86/asm.h"
35+
#endif
3136

3237
#include "avcodec.h"
3338
#include "idctdsp.h"
3439
#include "mpegvideo.h"
3540
#include "msmpeg4.h"
36-
#include "libavutil/x86/asm.h"
3741
#include "mpeg4videodata.h"
3842
#include "msmpeg4data.h"
3943
#include "msmpeg4_vc1_data.h"

0 commit comments

Comments
 (0)