Browse Source

Move DECLARE_ALIGNED_8 definition next to DECLARE_ALIGNED_16

Originally committed as revision 19738 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Måns Rullgård 16 years ago
parent
commit
5b1b014761
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/dsputil.h

+ 1
- 2
libavcodec/dsputil.h View File

@@ -610,6 +610,7 @@ void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx);
void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx);


#define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v) #define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v)
#define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)


#if HAVE_MMX #if HAVE_MMX


@@ -660,8 +661,6 @@ extern int mm_flags;


#endif #endif


# define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)

#ifndef STRIDE_ALIGN #ifndef STRIDE_ALIGN
# define STRIDE_ALIGN 8 # define STRIDE_ALIGN 8
#endif #endif


Loading…
Cancel
Save