diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-02-11 16:57:55 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-02-11 16:57:55 +0000 |
commit | 2720569a9a718d9b32f12261f3a32bb14f39b33b (patch) | |
tree | 6accf83c7ed0380b60464d0a5365aa9eda3c72f5 | |
parent | 0c1a9edad463bd6e22b30c19b700b099c7093fc1 (diff) | |
download | ffmpeg-2720569a9a718d9b32f12261f3a32bb14f39b33b.tar.gz |
* prototypes at one place
Originally committed as revision 1579 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dsputil.h | 3 | ||||
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 | ||||
-rw-r--r-- | libavcodec/i386/motion_est_mmx.c | 3 |
3 files changed, 3 insertions, 5 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index aaffd3827d..9612c59c00 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -197,6 +197,9 @@ static inline void emms(void) void dsputil_init_mmx(DSPContext* c, unsigned mask); void dsputil_set_bit_exact_mmx(DSPContext* c, unsigned mask); +void dsputil_init_pix_mmx(DSPContext* c, unsigned mask); +void dsputil_set_bit_exact_pix_mmx(DSPContext* c, unsigned mask); + #elif defined(ARCH_ARMV4L) /* This is to use 4 bytes read to the IDCT pointers for some 'zero' diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index e70c7761ca..8804c1cd21 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -22,8 +22,6 @@ #include "../dsputil.h" int mm_flags; /* multimedia extension flags */ -/* FIXME use them in static form */ -void dsputil_init_pix_mmx(DSPContext* c, unsigned mask); /* pixel operations */ static const uint64_t mm_bone __attribute__ ((aligned(8))) = 0x0101010101010101ULL; diff --git a/libavcodec/i386/motion_est_mmx.c b/libavcodec/i386/motion_est_mmx.c index 0816a7c141..1e6b9f73d2 100644 --- a/libavcodec/i386/motion_est_mmx.c +++ b/libavcodec/i386/motion_est_mmx.c @@ -20,9 +20,6 @@ */ #include "../dsputil.h" -void dsputil_init_pix_mmx(DSPContext* c, unsigned mask); -void dsputil_set_bit_exact_pix_mmx(DSPContext* c, unsigned mask); - static const __attribute__ ((aligned(8))) uint64_t round_tab[3]={ 0x0000000000000000, 0x0001000100010001, |