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

(-)softdevice-cvs-20080922/mpeg2decoder.c (-2 / +2 lines)
Lines 1016-1022 static int read_packet_RingBuffer(void * Link Here
1016
};
1016
};
1017
1017
1018
#if LIBAVFORMAT_BUILD >4625
1018
#if LIBAVFORMAT_BUILD >4625
1019
static offset_t seek_RingBuffer(void *opaque, offset_t offset, int whence)
1019
static int64_t seek_RingBuffer(void *opaque, int64_t offset, int whence)
1020
#else
1020
#else
1021
static int seek_RingBuffer(void *opaque, offset_t offset, int whence)
1021
static int seek_RingBuffer(void *opaque, offset_t offset, int whence)
1022
#endif
1022
#endif
Lines 1135-1141 start: Link Here
1135
    return 0;
1135
    return 0;
1136
};
1136
};
1137
1137
1138
int cMpeg2Decoder::seek(offset_t offset, int whence) {
1138
int cMpeg2Decoder::seek(int64_t offset, int whence) {
1139
   printf("unimplemented: seek offset %lld whence %d\n", (long long int)offset, whence);
1139
   printf("unimplemented: seek offset %lld whence %d\n", (long long int)offset, whence);
1140
   return -EINVAL;
1140
   return -EINVAL;
1141
};
1141
};
(-)softdevice-cvs-20080922/mpeg2decoder.h (-1 / +1 lines)
Lines 312-318 private: Link Here
312
    bool          packetMode;
312
    bool          packetMode;
313
public:
313
public:
314
    int read_packet(uint8_t *buf, int buf_size);
314
    int read_packet(uint8_t *buf, int buf_size);
315
    int seek(offset_t offset, int whence);
315
    int seek(int64_t offset, int whence);
316
316
317
public:
317
public:
318
    cMpeg2Decoder(cAudioOut *AudioOut, cVideoOut *VideoOut);
318
    cMpeg2Decoder(cAudioOut *AudioOut, cVideoOut *VideoOut);

Return to bug 242070