[FFmpeg-devel] ffmpeg on SH4
Tamas Selmeci
tselmeci
Tue Dec 11 08:23:07 CET 2007
Diego Biurrun wrote:
>> Without static the compiler (sh4-linux-gcc from STLinux-2.2, gcc-4.1.1)
>> complained: "static declaration of ?ff_avg_qpel16_mc33_old_c? follows
>> non-static declaration..."
>
> Can you post the exact error message?
Of course. Configure command is:
./configure --cross-compile --cross-prefix=sh4-linux- --arch=sh4
--extra-cflags=-fno-strict-aliasing
--prefix=/home/tselmeci/nfs/rootfs/usr/local --disable-ipv6
--disable-ffserver --disable-ffmpeg --disable-ffplay --disable-encoders
--disable-decoders --disable-muxers --disable-parser=h264
--enable-shared --disable-static --disable-zlib --disable-vhook
--disable-bsfs
Compile process:
1st error message:
sh4/idct_sh4.c:141:2: error: #error "FIXME!! change to single float"
sh4/idct_sh4.c:256:2: error: #error "FIXME!! change to double"
make[2]: *** [sh4/idct_sh4.o] Error 1
make[2]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec'
make[1]: *** [lib] Error 2
make[1]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg'
make[1]: Entering directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg'
make -C libavutil install-libs
make[2]: Entering directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavutil'
install -d "/home/tselmeci/nfs/rootfs/usr/local/lib"
install -m 755 libavutil.so
"/home/tselmeci/nfs/rootfs/usr/local/lib/libavutil.so.49.5.0"
sh4-linux-strip
"/home/tselmeci/nfs/rootfs/usr/local/lib/libavutil.so.49.5.0"
cd "/home/tselmeci/nfs/rootfs/usr/local/lib" && \
ln -sf libavutil.so.49.5.0 libavutil.so.49
cd "/home/tselmeci/nfs/rootfs/usr/local/lib" && \
ln -sf libavutil.so.49.5.0 libavutil.so
make[2]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavutil'
make -C libavcodec install-libs
make[2]: Entering directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec'
sh4-linux-gcc
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"/libswscale
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"/libavcodec
-DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
-D_ISOC9X_SOURCE
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"/libavutil
-fno-strict-aliasing -fomit-frame-pointer -g
-Wdeclaration-after-statement -Wall -Wno-switch -Wdisabled-optimization
-Wpointer-arith -Wredundant-decls -Wno-pointer-sign -O3 -c -o
sh4/idct_sh4.o sh4/idct_sh4.c
sh4/idct_sh4.c:141:2: error: #error "FIXME!! change to single float"
sh4/idct_sh4.c:256:2: error: #error "FIXME!! change to double"
make[2]: *** [sh4/idct_sh4.o] Error 1
make[2]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec'
make[1]: *** [install-libs] Error 2
make[1]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg'
make: *** [all] Error 2
After fixing this by changing the line 129 in idct_sh4.c to
#if 0
this error messages occurs:
sh4/dsputil_align.c: In function ?put_rnd_pixels8_x?:
sh4/dsputil_align.c:276: warning: implicit declaration of function
?rnd_avg2?
sh4/dsputil_align.c: In function ?put_no_rnd_pixels8_x?:
sh4/dsputil_align.c:277: warning: implicit declaration of function
?no_rnd_avg2?
In file included from sh4/dsputil_align.c:328:
sh4/qpel.c: At top level:
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_put_qpel8_mc11_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_put_qpel8_mc31_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_put_qpel8_mc13_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_put_qpel8_mc33_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_put_qpel8_mc12_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_put_qpel8_mc32_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_put_qpel16_mc11_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_put_qpel16_mc31_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_put_qpel16_mc13_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_put_qpel16_mc33_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_put_qpel16_mc12_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_put_qpel16_mc32_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc11_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc11_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc31_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc31_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc13_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc13_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc33_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc33_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc12_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc12_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc32_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc32_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc11_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc11_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc31_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc31_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc13_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc13_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc33_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc33_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc12_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc12_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc32_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc32_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_avg_qpel8_mc11_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_avg_qpel8_mc31_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_avg_qpel8_mc13_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_avg_qpel8_mc33_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_avg_qpel8_mc12_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_avg_qpel8_mc32_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_avg_qpel16_mc11_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_avg_qpel16_mc31_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_avg_qpel16_mc13_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_avg_qpel16_mc33_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_avg_qpel16_mc12_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_avg_qpel16_mc32_old_c? was here
make[2]: *** [sh4/dsputil_align.o] Error 1
make[2]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec'
make[1]: *** [lib] Error 2
make[1]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg'
make[1]: Entering directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg'
make -C libavutil install-libs
make[2]: Entering directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavutil'
install -d "/home/tselmeci/nfs/rootfs/usr/local/lib"
install -m 755 libavutil.so
"/home/tselmeci/nfs/rootfs/usr/local/lib/libavutil.so.49.5.0"
sh4-linux-strip
"/home/tselmeci/nfs/rootfs/usr/local/lib/libavutil.so.49.5.0"
cd "/home/tselmeci/nfs/rootfs/usr/local/lib" && \
ln -sf libavutil.so.49.5.0 libavutil.so.49
cd "/home/tselmeci/nfs/rootfs/usr/local/lib" && \
ln -sf libavutil.so.49.5.0 libavutil.so
make[2]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavutil'
make -C libavcodec install-libs
make[2]: Entering directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec'
sh4-linux-gcc
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"/libswscale
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"/libavcodec
-DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
-D_ISOC9X_SOURCE
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"
-I"/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg"/libavutil
-fno-strict-aliasing -fomit-frame-pointer -g
-Wdeclaration-after-statement -Wall -Wno-switch -Wdisabled-optimization
-Wpointer-arith -Wredundant-decls -Wno-pointer-sign -O3 -c -o
sh4/dsputil_align.o sh4/dsputil_align.c
sh4/dsputil_align.c: In function ?put_rnd_pixels8_x?:
sh4/dsputil_align.c:276: warning: implicit declaration of function
?rnd_avg2?
sh4/dsputil_align.c: In function ?put_no_rnd_pixels8_x?:
sh4/dsputil_align.c:277: warning: implicit declaration of function
?no_rnd_avg2?
In file included from sh4/dsputil_align.c:328:
sh4/qpel.c: At top level:
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_put_qpel8_mc11_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_put_qpel8_mc31_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_put_qpel8_mc13_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_put_qpel8_mc33_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_put_qpel8_mc12_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_put_qpel8_mc32_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_put_qpel16_mc11_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_put_qpel16_mc31_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_put_qpel16_mc13_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_put_qpel16_mc33_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_put_qpel16_mc12_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_put_qpel16_mc32_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc11_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc11_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc31_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc31_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc13_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc13_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc33_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc33_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc12_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc12_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc32_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc32_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc11_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc11_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc31_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc31_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc13_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc13_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc33_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc33_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc12_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc12_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc32_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc32_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_avg_qpel8_mc11_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_avg_qpel8_mc31_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_avg_qpel8_mc13_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_avg_qpel8_mc33_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_avg_qpel8_mc12_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_avg_qpel8_mc32_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_avg_qpel16_mc11_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_avg_qpel16_mc31_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_avg_qpel16_mc13_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_avg_qpel16_mc33_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_avg_qpel16_mc12_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_avg_qpel16_mc32_old_c? was here
make[2]: *** [sh4/dsputil_align.o] Error 1
make[2]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec'
make[1]: *** [install-libs] Error 2
make[1]: Leaving directory
`/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg'
make: *** [all] Error 2
localhost.localdomain:~/repos_svnserver/P08/share/ffmpeg # msh >a
sh4/dsputil_align.c: In function ?put_rnd_pixels8_x?:
sh4/dsputil_align.c:276: warning: implicit declaration of function
?rnd_avg2?
sh4/dsputil_align.c: In function ?put_no_rnd_pixels8_x?:
sh4/dsputil_align.c:277: warning: implicit declaration of function
?no_rnd_avg2?
In file included from sh4/dsputil_align.c:328:
sh4/qpel.c: At top level:
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_put_qpel8_mc11_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_put_qpel8_mc31_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_put_qpel8_mc13_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_put_qpel8_mc33_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_put_qpel8_mc12_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_put_qpel8_mc32_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_put_qpel16_mc11_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_put_qpel16_mc31_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_put_qpel16_mc13_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_put_qpel16_mc33_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_put_qpel16_mc12_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_put_qpel16_mc32_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc11_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc11_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc31_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc31_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc13_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc13_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc33_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc33_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc12_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc12_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc32_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc32_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc11_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc11_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc31_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc31_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc13_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc13_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc33_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc33_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc12_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc12_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc32_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc32_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_avg_qpel8_mc11_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_avg_qpel8_mc31_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_avg_qpel8_mc13_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_avg_qpel8_mc33_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_avg_qpel8_mc12_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_avg_qpel8_mc32_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_avg_qpel16_mc11_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_avg_qpel16_mc31_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_avg_qpel16_mc13_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_avg_qpel16_mc33_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_avg_qpel16_mc12_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_avg_qpel16_mc32_old_c? was here
make[2]: *** [sh4/dsputil_align.o] Error 1
make[1]: *** [lib] Error 2
sh4/dsputil_align.c: In function ?put_rnd_pixels8_x?:
sh4/dsputil_align.c:276: warning: implicit declaration of function
?rnd_avg2?
sh4/dsputil_align.c: In function ?put_no_rnd_pixels8_x?:
sh4/dsputil_align.c:277: warning: implicit declaration of function
?no_rnd_avg2?
In file included from sh4/dsputil_align.c:328:
sh4/qpel.c: At top level:
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_put_qpel8_mc11_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_put_qpel8_mc31_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_put_qpel8_mc13_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_put_qpel8_mc33_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_put_qpel8_mc12_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel8_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_put_qpel8_mc32_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_put_qpel16_mc11_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_put_qpel16_mc31_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_put_qpel16_mc13_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_put_qpel16_mc33_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_put_qpel16_mc12_old_c? was here
sh4/qpel.c:1080: error: static declaration of ?ff_put_qpel16_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_put_qpel16_mc32_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc11_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc11_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc31_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc31_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc13_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc13_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc33_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc33_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc12_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc12_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel8_mc32_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_put_no_rnd_qpel8_mc32_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc11_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc11_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc31_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc31_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc13_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc13_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc33_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc33_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc12_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc12_old_c? was here
sh4/qpel.c:1081: error: static declaration of
?ff_put_no_rnd_qpel16_mc32_old_c? follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_put_no_rnd_qpel16_mc32_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:134:
error: previous declaration of ?ff_avg_qpel8_mc11_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:135:
error: previous declaration of ?ff_avg_qpel8_mc31_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:138:
error: previous declaration of ?ff_avg_qpel8_mc13_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:139:
error: previous declaration of ?ff_avg_qpel8_mc33_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:136:
error: previous declaration of ?ff_avg_qpel8_mc12_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel8_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:137:
error: previous declaration of ?ff_avg_qpel8_mc32_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc11_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:128:
error: previous declaration of ?ff_avg_qpel16_mc11_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc31_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:129:
error: previous declaration of ?ff_avg_qpel16_mc31_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc13_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:132:
error: previous declaration of ?ff_avg_qpel16_mc13_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc33_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:133:
error: previous declaration of ?ff_avg_qpel16_mc33_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc12_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:130:
error: previous declaration of ?ff_avg_qpel16_mc12_old_c? was here
sh4/qpel.c:1082: error: static declaration of ?ff_avg_qpel16_mc32_old_c?
follows non-static declaration
/home/tselmeci/repos_svnserver/P08/share/ffmpeg/ffmpeg/libavcodec/dsputil.h:131:
error: previous declaration of ?ff_avg_qpel16_mc32_old_c? was here
make[2]: *** [sh4/dsputil_align.o] Error 1
make[1]: *** [install-libs] Error 2
make: *** [all] Error 2
Best regards,
--
Tamas Selmeci
R&D Engineer
DENSION Audio Systems Ltd.
More information about the ffmpeg-devel
mailing list