| Index: source/patched-ffmpeg-mt/libavutil/common.h
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavutil/common.h (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavutil/common.h (working copy)
|
| @@ -35,7 +35,14 @@
|
| #include <stdlib.h>
|
| #include <string.h>
|
| #include "attributes.h"
|
| +#include "libavutil/avconfig.h"
|
|
|
| +#if AV_HAVE_BIGENDIAN
|
| +# define AV_NE(be, le) (be)
|
| +#else
|
| +# define AV_NE(be, le) (le)
|
| +#endif
|
| +
|
| //rounded division & shift
|
| #define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
|
| /* assume b>0 */
|
|
|