mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.4 KiB

  1. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # T2 SDE: package/.../avifile/gcc4-h264-hotfix.patch
  5. # Copyright (C) 2004 - 2005 The T2 SDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- T2-COPYRIGHT-NOTE-END ---
  16. --- ./ffmpeg/libavcodec/i386/h264dsp_mmx.c.orig 2000-01-01 00:00:00.000000000 +0100
  17. +++ ./ffmpeg/libavcodec/i386/h264dsp_mmx.c 2005-09-14 13:57:24.000000000 +0200
  18. @@ -260,6 +260,7 @@
  19. }
  20. static void h264_h_loop_filter_luma_mmx2(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0)
  21. {
  22. +#if 0
  23. //FIXME: could cut some load/stores by merging transpose with filter
  24. // also, it only needs to transpose 6x8
  25. uint8_t trans[8*8];
  26. @@ -275,6 +276,7 @@
  27. transpose4x4(pix-2, trans +2*8, stride, 8);
  28. transpose4x4(pix-2+4*stride, trans+4+2*8, stride, 8);
  29. }
  30. +#endif
  31. }
  32. static inline void h264_loop_filter_chroma_mmx2(uint8_t *pix, int stride, int alpha1, int beta1, int8_t *tc0)