summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2008-08-31 07:05:08 +0000
committerDavid Conrad <lessen42@gmail.com>2008-08-31 07:05:08 +0000
commit587ae47aa77307d4ee81708ee74101b4be36a330 (patch)
tree39b0e936f22c428130e2bd13cb4dbab1c6fd4bb0
parentb18783644c43feed12ce711e878348fe8446e8f5 (diff)
Don't declare SSE vp3 idct data static, so it can be used in the mmx version
Originally committed as revision 15116 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/i386/vp3dsp_sse2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/i386/vp3dsp_sse2.c b/libavcodec/i386/vp3dsp_sse2.c
index ba8a32f520..b08a8d73b4 100644
--- a/libavcodec/i386/vp3dsp_sse2.c
+++ b/libavcodec/i386/vp3dsp_sse2.c
@@ -27,7 +27,7 @@
#include "dsputil_mmx.h"
#include "mmx.h"
-static DECLARE_ALIGNED_16(const unsigned short, SSE2_idct_data[7 * 8]) =
+DECLARE_ALIGNED_16(const unsigned short, ff_vp3_idct_data[7 * 8]) =
{
64277,64277,64277,64277,64277,64277,64277,64277,
60547,60547,60547,60547,60547,60547,60547,60547,
@@ -457,7 +457,7 @@ void ff_vp3_idct_sse2(int16_t *input_data)
{
unsigned char *input_bytes = (unsigned char *)input_data;
unsigned char *output_data_bytes = (unsigned char *)input_data;
- const unsigned char *idct_data_bytes = (const unsigned char *)SSE2_idct_data;
+ const unsigned char *idct_data_bytes = (const unsigned char *)ff_vp3_idct_data;
const unsigned char *Eight = (const unsigned char *)&ff_pw_8;
#define eax input_bytes