Skip to content
Snippets Groups Projects
Commit 43bf4ee9 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Merge commit 'e027032f'


* commit 'e027032f':
  x86: dsputil: ff_h263_*_loop_filter declarations to a more suitable place

Merged-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parents 52bda1d9 e027032f
No related branches found
No related tags found
No related merge requests found
...@@ -526,12 +526,7 @@ static void add_hfyu_median_prediction_cmov(uint8_t *dst, const uint8_t *top, ...@@ -526,12 +526,7 @@ static void add_hfyu_median_prediction_cmov(uint8_t *dst, const uint8_t *top,
*left_top = tl; *left_top = tl;
} }
#endif #endif
#endif /* HAVE_INLINE_ASM */
void ff_h263_v_loop_filter_mmx(uint8_t *src, int stride, int qscale);
void ff_h263_h_loop_filter_mmx(uint8_t *src, int stride, int qscale);
#if HAVE_INLINE_ASM
/* Draw the edges of width 'w' of an image of size width, height /* Draw the edges of width 'w' of an image of size width, height
* this MMX version can only handle w == 8 || w == 16. */ * this MMX version can only handle w == 8 || w == 16. */
static void draw_edges_mmx(uint8_t *buf, int wrap, int width, int height, static void draw_edges_mmx(uint8_t *buf, int wrap, int width, int height,
...@@ -1359,6 +1354,9 @@ static void vector_clipf_sse(float *dst, const float *src, ...@@ -1359,6 +1354,9 @@ static void vector_clipf_sse(float *dst, const float *src,
#endif /* HAVE_INLINE_ASM */ #endif /* HAVE_INLINE_ASM */
void ff_h263_v_loop_filter_mmx(uint8_t *src, int stride, int qscale);
void ff_h263_h_loop_filter_mmx(uint8_t *src, int stride, int qscale);
int32_t ff_scalarproduct_int16_mmxext(const int16_t *v1, const int16_t *v2, int32_t ff_scalarproduct_int16_mmxext(const int16_t *v1, const int16_t *v2,
int order); int order);
int32_t ff_scalarproduct_int16_sse2(const int16_t *v1, const int16_t *v2, int32_t ff_scalarproduct_int16_sse2(const int16_t *v1, const int16_t *v2,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment