git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
4959a4f
)
Merge commit 'a6ac4fcce44108f6f87278b8d12e890576f46a62'
author
Michael Niedermayer
<michaelni@gmx.at>
Mon, 14 Apr 2014 23:22:52 +0000
(
01:22
+0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Mon, 14 Apr 2014 23:23:00 +0000
(
01:23
+0200)
* commit '
a6ac4fcce44108f6f87278b8d12e890576f46a62
':
vp78: Align the intra4x4_pred_mode_top array within VP8Macroblock
Merged-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/vp8.h
patch
|
blob
|
history
diff --git
a/libavcodec/vp8.h
b/libavcodec/vp8.h
index
76c8a44
..
534c081
100644
(file)
--- a/
libavcodec/vp8.h
+++ b/
libavcodec/vp8.h
@@
-93,7
+93,7
@@
typedef struct VP8Macroblock {
uint8_t chroma_pred_mode;
uint8_t segment;
uint8_t intra4x4_pred_mode_mb[16];
-
uint8_t intra4x4_pred_mode_top
[4];
+
DECLARE_ALIGNED(4, uint8_t, intra4x4_pred_mode_top)
[4];
VP56mv mv;
VP56mv bmv[16];
} VP8Macroblock;