1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
https://bugs.gentoo.org/940328
--- a/converter/ppm/ppmtompeg/mpeg.c
+++ b/converter/ppm/ppmtompeg/mpeg.c
@@ -97,7 +97,7 @@
/* important -- don't initialize anything here */
/* must be re-initted anyway in GenMPEGStream */
-extern int IOtime;
+extern time_t IOtime;
extern boolean resizeFrame;
extern int outputWidth, outputHeight;
int gopSize = 100; /* default */
@@ -431,7 +431,7 @@
boolean const childProcess,
boolean const remoteIO,
MpegFrame ** const bFramePP,
- int * const IOtimeP,
+ time_t * const IOtimeP,
unsigned int * const framesReadP) {
/*----------------------------------------------------------------------------
Get Frame 'frameNum', which is a B frame related to previous reference
@@ -480,7 +480,7 @@
struct inputSource * const inputSourceP,
boolean const remoteIo,
boolean const childProcess,
- int * const IOtimeP,
+ time_t * const IOtimeP,
BitBucket * const wholeStreamBbP,
const char * const outputFileName,
unsigned int * const framesReadP,
@@ -653,7 +653,7 @@
const char * const inputConversion,
MpegFrame * const pastRefFrameP,
unsigned int * const framesReadP,
- int * const ioTimeP,
+ time_t * const ioTimeP,
bool * const endOfStreamP) {
/*----------------------------------------------------------------------------
Read the next frame from Standard Input and add it to the linked list
@@ -804,7 +804,7 @@
const char * const inputConversion,
MpegFrame ** const framePP,
unsigned int * const framesReadP,
- int * const ioTimeP) {
+ time_t * const ioTimeP) {
/* This needs to be modularized. It shouldn't issue messages about
encoding GOPs and B frames, since it knows nothing about those.
@@ -913,7 +913,7 @@
const char * const slaveConversion,
const char * const inputConversion,
unsigned int * const framesReadP,
- int * const ioTimeP) {
+ time_t * const ioTimeP) {
/*----------------------------------------------------------------------------
Get frame with number 'frameNumber' as *frameP.
|