Ticket #436: mythtv.gcc4.warnings.patch

File mythtv.gcc4.warnings.patch, 982 bytes (added by agforsyth@…, 20 years ago)

Patch that fixes the "differ in signedness" warnings above.

  • mythtv/libs/libavcodec/libpostproc/postprocess.h

     
    3131
    3232#define PP_QUALITY_MAX 6
    3333
    34 #define QP_STORE_T int8_t
     34#define QP_STORE_T uint8_t
    3535
    3636typedef void pp_context_t;
    3737typedef void pp_mode_t;
  • mythplugins/mythmusic/mythmusic/goom/tentacle3d.h

     
    22#define _TENTACLE3D_H
    33
    44void tentacle_new (void);
    5 void tentacle_update(int *buf, int *back, int W, int H, short[2][512], float, int drawit);
     5void tentacle_update(uint *buf, uint *back, int W, int H, short[2][512], float, int drawit);
    66void tentacle_free (void);
    77
    88#endif