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.

58 lines
1.8 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/jimmy/mplayer/vc-2.6-wkround.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./libvo/vo_svga.c.orig 2004-06-13 17:33:53.944331344 +0300
  20. +++ ./libvo/vo_svga.c 2004-06-13 17:33:47.920247144 +0300
  21. @@ -395,6 +395,8 @@
  22. return VO_NOTIMPL;
  23. }
  24. +extern char MSGTR_Paused_r[24];
  25. +
  26. //
  27. // This function is called to init the video driver for specific mode
  28. //
  29. @@ -449,6 +451,7 @@
  30. uninit();
  31. return 1; // error
  32. }
  33. + *MSGTR_Paused_r = '\r';
  34. /* set 332 palette for 8 bpp */
  35. if(mode_bpp==8){
  36. int i;
  37. --- ./mplayer.c.orig 2004-04-27 00:15:13.000000000 +0300
  38. +++ ./mplayer.c 2004-06-13 17:30:31.619089456 +0300
  39. @@ -707,6 +707,8 @@
  40. #include <SDL.h>
  41. #endif
  42. +char MSGTR_Paused_r[24] = MSGTR_Paused;
  43. +
  44. int main(int argc,char* argv[]){
  45. @@ -2409,7 +2411,7 @@
  46. if(osd_function==OSD_PAUSE){
  47. mp_cmd_t* cmd;
  48. if(!quiet) {
  49. - mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused);
  50. + mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused_r);
  51. fflush(stdout);
  52. }
  53. #ifdef HAVE_NEW_GUI