[FFmpeg-cvslog] x86: dsputil: ff_h263_*_loop_filter declarations to a more suitable place

Diego Biurrun git at videolan.org
Fri Apr 12 22:36:04 CEST 2013


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Thu Apr 11 01:19:44 2013 +0200| [e027032fc6a49db5a4ce12fc3e09ffb86ff20522] | committer: Diego Biurrun

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

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e027032fc6a49db5a4ce12fc3e09ffb86ff20522
---

 libavcodec/x86/dsputil_mmx.c |    8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c
index 7af11b0..cd3249d 100644
--- a/libavcodec/x86/dsputil_mmx.c
+++ b/libavcodec/x86/dsputil_mmx.c
@@ -618,12 +618,7 @@ static void add_hfyu_median_prediction_cmov(uint8_t *dst, const uint8_t *top,
     *left_top = tl;
 }
 #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
  * this MMX version can only handle w == 8 || w == 16. */
 static void draw_edges_mmx(uint8_t *buf, int wrap, int width, int height,
@@ -1316,6 +1311,9 @@ static void vector_clipf_sse(float *dst, const float *src,
 
 #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,
                                       int order);
 int32_t ff_scalarproduct_int16_sse2(const int16_t *v1, const int16_t *v2,



More information about the ffmpeg-cvslog mailing list