2009/3/12 Ondřej Caletka <O.Caletka@sh.cvut.cz>:
I wonder if you would send me your hacked version? I would like to test it.
Dnia 2009-03-12, o godz. 20:21:38 Frederik Kriewitz <frederik@kriewitz.eu> napisał(a):
2009/3/12 Ondřej Caletka <O.Caletka@sh.cvut.cz>:
I wonder if you would send me your hacked version? I would like to test it.
Is it possible and simple enough to make it accept UNICAST udp/rtp input? -- .: Jakub Paweł Głazik, .: email & jabber: zytek<at>nuxi.pl
2009/3/13 Jakub Paweł Głazik <zytek-lists@nuxi.pl>:
Is it possible and simple enough to make it accept UNICAST udp/rtp input?
Try using 0.0.0.0 (or the ip of the interface to listen on) in the config file, it might work. It can handle only MPEG-TS RTP (with a 12 byte RTP header) and nothing else. To make it use mpeg-ts over plain udp instead of rtp just delete any RTP related stuff from rtp_cb_received() (in mcgw.c) and replace 12 with 0.
Dnia 2009-03-13, o godz. 17:21:41 Frederik Kriewitz <frederik@kriewitz.eu> napisał(a):
2009/3/13 Jakub Paweł Głazik <zytek-lists@nuxi.pl>:
Is it possible and simple enough to make it accept UNICAST udp/rtp input?
Try using 0.0.0.0 (or the ip of the interface to listen on) in the config file, it might work.
.. and remove multicast joining ? I'll give it a try.
It can handle only MPEG-TS RTP (with a 12 byte RTP header) and nothing else. To make it use mpeg-ts over plain udp instead of rtp just delete any RTP related stuff from rtp_cb_received() (in mcgw.c) and replace 12 with 0.
RTP is fine. I want to feed it with getstream rtp output from my DVB receiver. -- .: Jakub Paweł Głazik, .: email & jabber: zytek<at>nuxi.pl
2009/3/13 Jakub Paweł Głazik <zytek-lists@nuxi.pl>:
.. and remove multicast joining ? I'll give it a try.
Shouldn't be necessary. socket_join_multicast(int sock, char *addr) only joins the IP if it's a class D/multicast address.
RTP is fine. I want to feed it with getstream rtp output from my DVB receiver.
That should work perfectly fine.
Dnia 2009-03-12, o godz. 20:21:38 Frederik Kriewitz <frederik@kriewitz.eu> napisał(a):
2009/3/12 Ondřej Caletka <O.Caletka@sh.cvut.cz>:
I wonder if you would send me your hacked version? I would like to test it.
Works. Gonna test it under heavier load now. I've got SEGV, patch here --- mcgw.c.orig 2009-03-16 15:03:04.000000000 +0100 +++ mcgw.c 2009-03-16 15:03:10.000000000 +0100 @@ -128,7 +128,7 @@ char linebuf[1024]; char *ip, *port, *url; struct input_s *input; - GList *inputs; + GList *inputs = NULL; FILE *fd; fd = fopen(filename, "rt"); -- .: Jakub Paweł Głazik, .: email & jabber: zytek<at>nuxi.pl
participants (2)
-
Frederik Kriewitz -
Jakub Paweł Głazik