mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
fix mplex configure check (bug #140994)
Original commit message from CVS: fix mplex configure check (bug #140994)
This commit is contained in:
parent
129c3df1bc
commit
95b968355e
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
|
||||||
|
* configure.ac:
|
||||||
|
fix mplex configure check segfaulting on some systems (bug #140994)
|
||||||
|
|
||||||
2004-11-13 Benjamin Otte <otte@gnome.org>
|
2004-11-13 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
* ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
|
* ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
|
||||||
|
|
|
@ -1342,7 +1342,7 @@ main (int argc,
|
||||||
vector<IBitStream *> inputs;
|
vector<IBitStream *> inputs;
|
||||||
job->SetupInputStreams (inputs);
|
job->SetupInputStreams (inputs);
|
||||||
TestOutputStream *out = new TestOutputStream ();
|
TestOutputStream *out = new TestOutputStream ();
|
||||||
Multiplexor mux (*job, *out);
|
Multiplexor *mux = new Multiplexor(*job, *out);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
],[
|
],[
|
||||||
|
|
Loading…
Reference in a new issue