Browse Source

Declare sse2 and ssse2 function in yadif header

Originally committed as revision 25877 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Baptiste Coudurier 15 years ago
parent
commit
bf799f686f
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      libavfilter/yadif.h

+ 8
- 0
libavfilter/yadif.h View File

@@ -25,4 +25,12 @@ void ff_yadif_filter_line_mmx(uint8_t *dst,
uint8_t *prev, uint8_t *cur, uint8_t *next,
int w, int refs, int parity, int mode);

void ff_yadif_filter_line_sse2(uint8_t *dst,
uint8_t *prev, uint8_t *cur, uint8_t *next,
int w, int refs, int parity, int mode);

void ff_yadif_filter_line_ssse3(uint8_t *dst,
uint8_t *prev, uint8_t *cur, uint8_t *next,
int w, int refs, int parity, int mode);

#endif /* AVFILTER_YADIF_H */

Loading…
Cancel
Save