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.

55 lines
3.2 KiB

  1. diff -dur transcode-0.6.12/ffmpeg/libavcodec/i386/dsputil_mmx.c transcode-0.6.12-patch/ffmpeg/libavcodec/i386/dsputil_mmx.c
  2. --- transcode-0.6.12/ffmpeg/libavcodec/i386/dsputil_mmx.c 2003-12-30 11:02:10.000000000 +0100
  3. +++ transcode-0.6.12-patch/ffmpeg/libavcodec/i386/dsputil_mmx.c 2004-08-05 00:32:57.000000000 +0200
  4. @@ -31,8 +31,8 @@
  5. static const uint64_t mm_wone __attribute__ ((aligned(8))) = 0x0001000100010001ULL;
  6. static const uint64_t mm_wtwo __attribute__ ((aligned(8))) = 0x0002000200020002ULL;
  7. -static const uint64_t ff_pw_20 __attribute__ ((aligned(8))) = 0x0014001400140014ULL;
  8. -static const uint64_t ff_pw_3 __attribute__ ((aligned(8))) = 0x0003000300030003ULL;
  9. +static const uint64_t ff_pw_20 __attribute__ ((used)) __attribute__ ((aligned(8))) = 0x0014001400140014ULL;
  10. +static const uint64_t ff_pw_3 __attribute__ ((used)) __attribute__ ((aligned(8))) = 0x0003000300030003ULL;
  11. static const uint64_t ff_pw_16 __attribute__ ((aligned(8))) = 0x0010001000100010ULL;
  12. static const uint64_t ff_pw_15 __attribute__ ((aligned(8))) = 0x000F000F000F000FULL;
  13. Nur in transcode-0.6.12-patch/ffmpeg/libavcodec/i386: dsputil_mmx.c~.
  14. diff -dur transcode-0.6.12/ffmpeg/libavcodec/i386/motion_est_mmx.c transcode-0.6.12-patch/ffmpeg/libavcodec/i386/motion_est_mmx.c
  15. --- transcode-0.6.12/ffmpeg/libavcodec/i386/motion_est_mmx.c 2003-12-30 11:02:10.000000000 +0100
  16. +++ transcode-0.6.12-patch/ffmpeg/libavcodec/i386/motion_est_mmx.c 2004-08-05 00:32:57.000000000 +0200
  17. @@ -26,7 +26,7 @@
  18. 0x0002000200020002ULL,
  19. };
  20. -static __attribute__ ((aligned(8), unused)) uint64_t bone= 0x0101010101010101LL;
  21. +static __attribute__ ((used)) __attribute__ ((aligned(8), unused)) uint64_t bone= 0x0101010101010101LL;
  22. static inline void sad8_mmx(uint8_t *blk1, uint8_t *blk2, int stride, int h)
  23. {
  24. Nur in transcode-0.6.12-patch/ffmpeg/libavcodec/i386: motion_est_mmx.c~.
  25. diff -dur transcode-0.6.12/ffmpeg/libavcodec/i386/simple_idct_mmx.c transcode-0.6.12-patch/ffmpeg/libavcodec/i386/simple_idct_mmx.c
  26. --- transcode-0.6.12/ffmpeg/libavcodec/i386/simple_idct_mmx.c 2003-12-20 12:49:12.000000000 +0100
  27. +++ transcode-0.6.12-patch/ffmpeg/libavcodec/i386/simple_idct_mmx.c 2004-08-05 00:32:57.000000000 +0200
  28. @@ -45,8 +45,8 @@
  29. #define ROW_SHIFT 11
  30. #define COL_SHIFT 20 // 6
  31. -static const uint64_t __attribute__((aligned(8))) wm1010= 0xFFFF0000FFFF0000ULL;
  32. -static const uint64_t __attribute__((aligned(8))) d40000= 0x0000000000040000ULL;
  33. +static const uint64_t __attribute__ ((used)) __attribute__((aligned(8))) wm1010= 0xFFFF0000FFFF0000ULL;
  34. +static const uint64_t __attribute__ ((used)) __attribute__((aligned(8))) d40000= 0x0000000000040000ULL;
  35. static const int16_t __attribute__((aligned(8))) coeffs[]= {
  36. 1<<(ROW_SHIFT-1), 0, 1<<(ROW_SHIFT-1), 0,
  37. diff -dur transcode-0.6.12/filter/subtitler/frame_list.c transcode-0.6.12-patch/filter/subtitler/frame_list.c
  38. --- transcode-0.6.12/filter/subtitler/frame_list.c 2004-01-05 14:12:55.000000000 +0100
  39. +++ transcode-0.6.12-patch/filter/subtitler/frame_list.c 2004-08-05 00:59:05.000000000 +0200
  40. @@ -33,7 +33,7 @@
  41. char *strsave(char *s) /*save char array s somewhere*/
  42. {
  43. -char *p, *malloc();
  44. +char *p;
  45. if(p = malloc( strlen(s) + 1) ) strcpy(p, s);
  46. return(p);
  47. }
  48. Nur in transcode-0.6.12-patch/filter/subtitler: frame_list.c~.