View | Details | Raw Unified
Collapse All | Expand All

(-) mythtv-0.15.1.orig/libs/libmythtv/fifowriter.cpp (-3 / +3 lines)
 Lines 21-29    Link Here 
    maxblksize = new long[count];
    maxblksize = new long[count];
    killwr = new int[count];
    killwr = new int[count];
    fbcount = new int[count];
    fbcount = new int[count];
    fifo_buf = new (struct fifo_buf *)[count];
    fifo_buf = new fifo_ptr[count];
    fb_inptr = new (struct fifo_buf *)[count];
    fb_inptr = new fifo_ptr[count];
    fb_outptr = new (struct fifo_buf *)[count];
    fb_outptr = new fifo_ptr[count];
    fifothrds = new pthread_t[count];
    fifothrds = new pthread_t[count];
    fifo_lock = new pthread_mutex_t [count];
    fifo_lock = new pthread_mutex_t [count];
    empty_cond = new pthread_cond_t[count];
    empty_cond = new pthread_cond_t[count];
(-) mythtv-0.15.1.orig/libs/libmythtv/fifowriter.h (+1 lines)
 Lines 29-34    Link Here 
        long blksize;
        long blksize;
     } **fifo_buf, **fb_inptr, **fb_outptr;
     } **fifo_buf, **fb_inptr, **fb_outptr;
     typedef struct fifo_buf* fifo_ptr;
     pthread_t *fifothrds;
     pthread_t *fifothrds;
     pthread_mutex_t *fifo_lock;
     pthread_mutex_t *fifo_lock;
     pthread_cond_t *full_cond, *empty_cond;
     pthread_cond_t *full_cond, *empty_cond;
(-) mythtv-0.15.1.orig/settings.pro (-1 / +1 lines)
 Lines 14-20    Link Here 
release {
release {
        DEFINES += MMX
        DEFINES += MMX
        QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer
        QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer -fpermissive
        QMAKE_CFLAGS_RELEASE = $${QMAKE_CXXFLAGS_RELEASE}
        QMAKE_CFLAGS_RELEASE = $${QMAKE_CXXFLAGS_RELEASE}
}
}