Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 129447
Collapse All | Expand All

(-)openh323-1.15.6/include/ixjlid.h (-1 / +1 lines)
Lines 836-842 Link Here
836
    };
836
    };
837
837
838
    static void SignalHandler(int sig);
838
    static void SignalHandler(int sig);
839
    ExceptionInfo * OpalIxJDevice::GetException();
839
    ExceptionInfo * GetException();
840
    int GetOSHandle() { return os_handle; }
840
    int GetOSHandle() { return os_handle; }
841
841
842
  protected:
842
  protected:
(-)openh323-1.15.6/src/vic/p64.cxx (-1 / +1 lines)
Lines 1125-1131 Link Here
1125
	 * If input buffer not aligned, prime bit-buffer
1125
	 * If input buffer not aligned, prime bit-buffer
1126
	 * with 8 bits; otherwise, prime it with a 16.
1126
	 * with 8 bits; otherwise, prime it with a 16.
1127
	 */
1127
	 */
1128
	if ((int)bp & 1) {
1128
	if ((long)bp & 1) {
1129
		bs_ = (u_short*)(bp + 1);
1129
		bs_ = (u_short*)(bp + 1);
1130
		bb_ = *bp;
1130
		bb_ = *bp;
1131
		nbb_ = 8 - sbit;
1131
		nbb_ = 8 - sbit;
(-)openh323-1.15.6/plugins/audio/Speex/speexcodec.cxx (-1 / +1 lines)
Lines 112-118 Link Here
112
112
113
static void * create_encoder(const struct PluginCodec_Definition * codec)
113
static void * create_encoder(const struct PluginCodec_Definition * codec)
114
{
114
{
115
  int mode = (int)(codec->userData);
115
  int mode = (long)(codec->userData);
116
116
117
  struct PluginSpeexContext * context = new PluginSpeexContext;
117
  struct PluginSpeexContext * context = new PluginSpeexContext;
118
  context->bits = new SpeexBits;
118
  context->bits = new SpeexBits;

Return to bug 129447