Re: [Live-devel] MPEG4VideoStreamParser + marker bit not set!.

2008-08-21 Thread James Stafford
The user start code (0x01b2) is followed by an unsigned long that contains an ID (0x414d5050). The next unsigned long contains the size of the user frame (including start code, ID and size). Having looked at the code, the user frame size after the ID is actually an unsigned short.

Re: [Live-devel] MPEG4VideoStreamParser + marker bit not set!.

2008-08-21 Thread James Stafford
Hi Ioannis, I try to program a video streamer for the MPEG4000XLP (a 4-Channel MPEG4 Encoder/Decoder for PC104+, http://ampltd.com/prod/mpeg4kxlp.html ) with help of the live media SDK. It works, but when I run the program I get the following continuous message : MPEG4VideoStreamParser

Re: [Live-devel] MPEG4VideoStreamParser + marker bit not set!.

2008-08-21 Thread Ross Finlayson
videoSource = MPEG4VideoStreamFramer::createNew(*env, inputSource); Because "inputSource" delivers discrete MPEG-4 video frames, rather than an unstructured byte stream, you should use "MPEG4VideoStreamDiscreteFramer" rather than "MPEG4VideoStreamFramer". -- Ross Finlayson Live Networks, Inc

[Live-devel] MPEG4VideoStreamParser + marker bit not set!.

2008-08-21 Thread ???????? ???????
Hi all, I try to program a video streamer for the MPEG4000XLP (a 4-Channel MPEG4 Encoder/Decoder for PC104+, http://ampltd.com/prod/mpeg4kxlp.html ) with help of the live media SDK. For the program base structure I have used the test program "testMPEG4VideoStreamer" of live555 testFiles. T