mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +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
1cb0235a08
commit
d6d44a94bc
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>
|
||||
|
||||
* ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
|
||||
|
|
|
@ -1342,7 +1342,7 @@ main (int argc,
|
|||
vector<IBitStream *> inputs;
|
||||
job->SetupInputStreams (inputs);
|
||||
TestOutputStream *out = new TestOutputStream ();
|
||||
Multiplexor mux (*job, *out);
|
||||
Multiplexor *mux = new Multiplexor(*job, *out);
|
||||
return 0;
|
||||
}
|
||||
],[
|
||||
|
|
Loading…
Reference in a new issue