Re: [Live-devel] Framer/Parser Implementation problem

2008-11-02 Thread Yedidia Amit
: Monday, November 03, 2008 7:03 AM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] Framer/Parser Implementation problem My problem is the following: ByteStreamFileSource needs

Re: [Live-devel] Framer/Parser Implementation problem

2008-11-02 Thread Ross Finlayson
My problem is the following: ByteStreamFileSource needs that H264VideoStreamFramer to have a parser. The parser object should parse byte after byte and deliver complete Nals to the framer. However since my Device source is already sending Nals using send(), I just need to do recv() to receive

[Live-devel] Framer/Parser Implementation problem

2008-11-02 Thread Yedidia Amit
Hi Ross,All. I want to implement H264VideoStreamFramer to delievr H264 Nals. I also want that the same framer will be used no matter if the source ByteStreamFileSource or DeviceSource. I implemented my device source as a readable socket which the encoder send nal after nal into it. (I am receivin