summaryrefslogtreecommitdiff
path: root/packages/mplayer/mplayer-atty-1.1.4/dsputil.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2005-06-30 08:19:37 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-06-30 08:19:37 +0000
commitc8e5702127e507e82e6f68a4b8c546803accea9d (patch)
tree00583491f40ecc640f2b28452af995e3a63a09d7 /packages/mplayer/mplayer-atty-1.1.4/dsputil.patch
parent87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff)
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/mplayer/mplayer-atty-1.1.4/dsputil.patch')
-rw-r--r--packages/mplayer/mplayer-atty-1.1.4/dsputil.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/packages/mplayer/mplayer-atty-1.1.4/dsputil.patch b/packages/mplayer/mplayer-atty-1.1.4/dsputil.patch
index e69de29bb2..962f1bc1e3 100644
--- a/packages/mplayer/mplayer-atty-1.1.4/dsputil.patch
+++ b/packages/mplayer/mplayer-atty-1.1.4/dsputil.patch
@@ -0,0 +1,41 @@
+--- mplayer-1.0.1/libavcodec/armv4l/dsputil_arm.c.orig 2005-04-08 09:16:18.310720680 +0000
++++ mplayer-1.0.1/libavcodec/armv4l/dsputil_arm.c 2005-04-08 09:18:11.679486008 +0000
+@@ -248,22 +248,22 @@
+ c->idct_permutation_type= FF_NO_IDCT_PERM;
+ }
+
+- c->put_pixels_tab[0][0] = put_pixels16_arm;
+- c->put_pixels_tab[0][1] = put_pixels16_x2_arm;
+- c->put_pixels_tab[0][2] = put_pixels16_y2_arm;
+- c->put_pixels_tab[0][3] = put_pixels16_xy2_arm;
+- c->put_no_rnd_pixels_tab[0][0] = put_pixels16_arm;
+- c->put_no_rnd_pixels_tab[0][1] = put_no_rnd_pixels16_x2_arm;
+- c->put_no_rnd_pixels_tab[0][2] = put_no_rnd_pixels16_y2_arm;
+- c->put_no_rnd_pixels_tab[0][3] = put_no_rnd_pixels16_xy2_arm;
+- c->put_pixels_tab[1][0] = put_pixels8_arm;
+- c->put_pixels_tab[1][1] = put_pixels8_x2_arm;
+- c->put_pixels_tab[1][2] = put_pixels8_y2_arm;
+- c->put_pixels_tab[1][3] = put_pixels8_xy2_arm;
+- c->put_no_rnd_pixels_tab[1][0] = put_pixels8_arm;
+- c->put_no_rnd_pixels_tab[1][1] = put_no_rnd_pixels8_x2_arm;
+- c->put_no_rnd_pixels_tab[1][2] = put_no_rnd_pixels8_y2_arm;
+- c->put_no_rnd_pixels_tab[1][3] = put_no_rnd_pixels8_xy2_arm;
++ /* c->put_pixels_tab[0][0] = put_pixels16_arm; */ // NG!
++ c->put_pixels_tab[0][1] = put_pixels16_x2_arm; //OK!
++ c->put_pixels_tab[0][2] = put_pixels16_y2_arm; //OK!
++ /* c->put_pixels_tab[0][3] = put_pixels16_xy2_arm; /\* NG *\/ */
++ /* c->put_no_rnd_pixels_tab[0][0] = put_pixels16_arm; // ?(.....) */
++ c->put_no_rnd_pixels_tab[0][1] = put_no_rnd_pixels16_x2_arm; // OK
++ c->put_no_rnd_pixels_tab[0][2] = put_no_rnd_pixels16_y2_arm; //OK
++ /* c->put_no_rnd_pixels_tab[0][3] = put_no_rnd_pixels16_xy2_arm; //NG */
++ c->put_pixels_tab[1][0] = put_pixels8_arm; //OK
++ c->put_pixels_tab[1][1] = put_pixels8_x2_arm; //OK
++ /* c->put_pixels_tab[1][2] = put_pixels8_y2_arm; //NG */
++ /* c->put_pixels_tab[1][3] = put_pixels8_xy2_arm; //NG */
++ c->put_no_rnd_pixels_tab[1][0] = put_pixels8_arm;//OK
++ c->put_no_rnd_pixels_tab[1][1] = put_no_rnd_pixels8_x2_arm; //OK
++ c->put_no_rnd_pixels_tab[1][2] = put_no_rnd_pixels8_y2_arm; //OK
++ /* c->put_no_rnd_pixels_tab[1][3] = put_no_rnd_pixels8_xy2_arm;//NG */
+
+ #ifdef HAVE_IWMMXT
+ dsputil_init_iwmmxt(c, avctx);