Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksoid <aleksoid@users.sourceforge.net>2010-06-23 04:47:55 +0400
committerAleksoid <aleksoid@users.sourceforge.net>2010-06-23 04:47:55 +0400
commit37366add780bcca0b37ce11bc7349c77481e3aad (patch)
tree8306a0376c4de1eb3f79bd43e7cabd7111e60120 /src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/mathops.h
parent1f3669bcf0a5b8f04ae4a812b29b0c97908906fe (diff)
Add : Internal VP8 Decoder, initial release(always ON);
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@2070 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/mathops.h')
-rw-r--r--src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/mathops.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/mathops.h b/src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/mathops.h
index aaae6898c..3b4346152 100644
--- a/src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/mathops.h
+++ b/src/filters/transform/MPCVideoDec/ffmpeg/libavcodec/mathops.h
@@ -141,5 +141,13 @@ if ((y) < (x)) {\
# define INT_BIT (8 * sizeof(int))
#endif
+#ifndef PACK4x8
+# if HAVE_BIGENDIAN
+# define PACK4UINT8(a,b,c,d) (((a) << 24) | ((b) << 16) | ((c) << 8) | (d))
+# else
+# define PACK4UINT8(a,b,c,d) (((d) << 24) | ((c) << 16) | ((b) << 8) | (a))
+# endif
+#endif
+
#endif /* AVCODEC_MATHOPS_H */