mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-10 11:12:21 +08:00
MSVC-compatible __align8/__align16 declaration
patch by Steve Lhomme, steve .dot. lhomme .at. free .dot. fr Originally committed as revision 4942 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:

committed by
Diego Biurrun

parent
04c669ba98
commit
68b51e58ce
@@ -50,8 +50,8 @@ struct ImgReSampleContext {
|
||||
int padtop, padbottom, padleft, padright;
|
||||
int pad_owidth, pad_oheight;
|
||||
int h_incr, v_incr;
|
||||
int16_t h_filters[NB_PHASES][NB_TAPS] __align8; /* horizontal filters */
|
||||
int16_t v_filters[NB_PHASES][NB_TAPS] __align8; /* vertical filters */
|
||||
DECLARE_ALIGNED_8(int16_t, h_filters[NB_PHASES][NB_TAPS]); /* horizontal filters */
|
||||
DECLARE_ALIGNED_8(int16_t, v_filters[NB_PHASES][NB_TAPS]); /* vertical filters */
|
||||
uint8_t *line_buf;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user