mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-07 12:21:17 +00:00
Fix -Werror=return-type error in configure.
This commit is contained in:
parent
30f85a3189
commit
feb93b516f
1 changed files with 2 additions and 2 deletions
|
@ -1655,9 +1655,9 @@ main (int argc,
|
||||||
TestOutputStream () : OutputStream () { }
|
TestOutputStream () : OutputStream () { }
|
||||||
void Write (uint8_t *a, unsigned int b) { }
|
void Write (uint8_t *a, unsigned int b) { }
|
||||||
void NextSegment () { }
|
void NextSegment () { }
|
||||||
uint64_t SegmentSize () { }
|
uint64_t SegmentSize () { return 0; }
|
||||||
void Close () { }
|
void Close () { }
|
||||||
int Open () { }
|
int Open () { return 0; }
|
||||||
};
|
};
|
||||||
MultiplexJob *job = new MultiplexJob ();
|
MultiplexJob *job = new MultiplexJob ();
|
||||||
vector<IBitStream *> inputs;
|
vector<IBitStream *> inputs;
|
||||||
|
|
Loading…
Reference in a new issue