Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. diff --git a/softhddev.c b/softhddev.c
  2. index 1759109..a27ee33 100644
  3. --- a/softhddev.c
  4. +++ b/softhddev.c
  5. @@ -89,7 +89,7 @@ static char VdpauDecoder = 1; ///< vdpau decoder used
  6. extern int ConfigAudioBufferTime; ///< config size ms of audio buffer
  7. extern int ConfigVideoClearOnSwitch; //< clear decoder on channel switch
  8. char ConfigStartX11Server; ///< flag start the x11 server
  9. -static char ConfigStartSuspended; ///< flag to start in suspend mode
  10. +static signed char ConfigStartSuspended; ///< flag to start in suspend mode
  11. static char ConfigFullscreen; ///< fullscreen modus
  12. static const char *X11ServerArguments; ///< default command arguments
  13. static char ConfigStillDecoder; ///< hw/sw decoder for still picture
  14. diff --git a/softhddevice.cpp b/softhddevice.cpp
  15. index b3467a5..ef0cd4b 100644
  16. --- a/softhddevice.cpp
  17. +++ b/softhddevice.cpp
  18. @@ -171,7 +171,7 @@ static volatile int DoMakePrimary; ///< switch primary device to this
  19. #define NOT_SUSPENDED 0 ///< not suspend mode
  20. #define SUSPEND_NORMAL 1 ///< normal suspend mode
  21. #define SUSPEND_DETACHED 2 ///< detached suspend mode
  22. -static char SuspendMode; ///< suspend mode
  23. +static signed char SuspendMode; ///< suspend mode
  24.  
  25. //////////////////////////////////////////////////////////////////////////////
  26.  
  27. diff --git a/video.c b/video.c
  28. index a5b3a5a..bcfcbef 100644
  29. --- a/video.c
  30. +++ b/video.c
  31. @@ -332,7 +332,7 @@ static const VideoModule NoopModule; ///< forward definition of noop module
  32. /// selected video module
  33. static const VideoModule *VideoUsedModule = &NoopModule;
  34.  
  35. -char VideoHardwareDecoder = -1; ///< flag use hardware decoder
  36. +signed char VideoHardwareDecoder = -1; ///< flag use hardware decoder
  37.  
  38. static char VideoSurfaceModesChanged; ///< flag surface modes changed
  39.  
  40. diff --git a/video.h b/video.h
  41. index fa3e44f..0587393 100644
  42. --- a/video.h
  43. +++ b/video.h
  44. @@ -37,7 +37,7 @@ typedef struct __video_stream__ VideoStream;
  45. // Variables
  46. //----------------------------------------------------------------------------
  47.  
  48. -extern char VideoHardwareDecoder; ///< flag use hardware decoder
  49. +extern signed char VideoHardwareDecoder; ///< flag use hardware decoder
  50. extern char VideoIgnoreRepeatPict; ///< disable repeat pict warning
  51. extern int VideoAudioDelay; ///< audio/video delay
  52. extern char ConfigStartX11Server; ///< flag start the x11 server
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement