OpenSDE Packages Database (without history before r20070)
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.

73 lines
2.7 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../tvtime/gcc41.patch
  5. # Copyright (C) 2006 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. # --- SDE-COPYRIGHT-NOTE-END ---
  16. diff -Nur tvtime-1.0.2-orig/plugins/greedyh.asm tvtime-1.0.2/plugins/greedyh.asm
  17. --- tvtime-1.0.2-orig/plugins/greedyh.asm 2005-08-14 16:16:43.000000000 +0000
  18. +++ tvtime-1.0.2/plugins/greedyh.asm 2006-04-01 21:31:27.554365750 +0000
  19. @@ -18,7 +18,7 @@
  20. #include "x86-64_macros.inc"
  21. -void DScalerFilterGreedyH::FUNCT_NAME(TDeinterlaceInfo* pInfo)
  22. +void FUNCT_NAME(TDeinterlaceInfo* pInfo)
  23. {
  24. int64_t i;
  25. bool InfoIsOdd = (pInfo->PictureHistory[0]->Flags & PICTURE_INTERLACED_ODD) ? 1 : 0;
  26. diff -Nur tvtime-1.0.2-orig/plugins/tomsmocomp/TomsMoCompAll2.inc tvtime-1.0.2/plugins/tomsmocomp/TomsMoCompAll2.inc
  27. --- tvtime-1.0.2-orig/plugins/tomsmocomp/TomsMoCompAll2.inc 2004-10-20 15:31:05.000000000 +0000
  28. +++ tvtime-1.0.2/plugins/tomsmocomp/TomsMoCompAll2.inc 2006-04-01 21:45:51.680370250 +0000
  29. @@ -5,9 +5,9 @@
  30. #endif
  31. #ifdef USE_STRANGE_BOB
  32. -#define SEARCH_EFFORT_FUNC(n) DScalerFilterTomsMoComp::SEFUNC(n##_SB)
  33. +#define SEARCH_EFFORT_FUNC(n) SEFUNC(n##_SB)
  34. #else
  35. -#define SEARCH_EFFORT_FUNC(n) DScalerFilterTomsMoComp::SEFUNC(n)
  36. +#define SEARCH_EFFORT_FUNC(n) SEFUNC(n)
  37. #endif
  38. int SEARCH_EFFORT_FUNC(0) // we don't try at all ;-)
  39. diff -Nur tvtime-1.0.2-orig/plugins/tomsmocomp.cpp tvtime-1.0.2/plugins/tomsmocomp.cpp
  40. --- tvtime-1.0.2-orig/plugins/tomsmocomp.cpp 2004-10-20 17:38:04.000000000 +0000
  41. +++ tvtime-1.0.2/plugins/tomsmocomp.cpp 2006-04-01 21:38:16.927950000 +0000
  42. @@ -31,7 +31,7 @@
  43. #define IS_MMX
  44. #define SSE_TYPE MMX
  45. -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_MMX
  46. +#define FUNCT_NAME filterDScaler_MMX
  47. #include "tomsmocomp/TomsMoCompAll.inc"
  48. #undef IS_MMX
  49. #undef SSE_TYPE
  50. @@ -39,7 +39,7 @@
  51. #define IS_3DNOW
  52. #define SSE_TYPE 3DNOW
  53. -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_3DNOW
  54. +#define FUNCT_NAME filterDScaler_3DNOW
  55. #include "tomsmocomp/TomsMoCompAll.inc"
  56. #undef IS_3DNOW
  57. #undef SSE_TYPE
  58. @@ -47,7 +47,7 @@
  59. #define IS_SSE
  60. #define SSE_TYPE SSE
  61. -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_SSE
  62. +#define FUNCT_NAME filterDScaler_SSE
  63. #include "tomsmocomp/TomsMoCompAll.inc"
  64. #undef IS_SSE
  65. #undef SSE_TYPE